Jave 模拟 http 请求

8 篇文章 0 订阅

在编写一个爬虫,当然必须要模拟http请求了!

于是又了下面的代码:

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.io.*;
import java.net.URL;
import java.net.URLConnection;

public class httpTest {
public static void testPost() throws IOException {   
        URL url = new URL("https://foursquare.com/v/universal-studios-singapore/4b1ee9ebf964a5207e2124e3");   
        //set the url 
        URLConnection connection = url.openConnection();   
        
        connection.setDoOutput(true);     
        
        RandomAccessFile ra = new RandomAccessFile("E:\\html.html", "rw");
        //set the out filename and path
        String sCurrentLine;   
        String sTotalString;   
        sCurrentLine = "";   
        sTotalString = "";   
        InputStream l_urlStream;   
        l_urlStream = connection.getInputStream();   
           
        BufferedReader l_reader = new BufferedReader(new InputStreamReader(   
                l_urlStream));   
        while ((sCurrentLine = l_reader.readLine()) != null) {   
            sTotalString += sCurrentLine + "\r\n";   
        //sTotalString is the out put stream.
        }   
        
        System.out.println(sTotalString); 
        ra.writeBytes(sTotalString);
        ra.close();
    }   
  
    public static void main(String[] args) throws IOException {   
        testPost();   
    }   
}

最终的接受到的html文件在E盘的html.html文件里面。

大家有没有什么好的关于java网络编程的书

比较系统的那种。谢谢!


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值