Apache HttpClient通过代理访问网络

注:本代码实现包针对于Apache下的HttpComponents项目http://hc.apache.org/downloads.cgi

包命名规范为:org.apache.http.*;

示例代码:

package httpclient;

import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;

import org.apache.http.HttpEntity;
import org.apache.http.HttpHost;
import org.apache.http.HttpResponse;
import org.apache.http.auth.AuthScope;
import org.apache.http.auth.UsernamePasswordCredentials;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.conn.params.ConnRoutePNames;
import org.apache.http.impl.client.DefaultHttpClient;

public class HttpClientTest {
	public static void main(String args[]) throws Exception {
		DefaultHttpClient client = new DefaultHttpClient();
		//设置代理开始。如果代理服务器需要验证的话,可以修改用户名和密码
		//192.168.1.107为代理地址 808为代理端口 UsernamePasswordCredentials后的两个参数为代理的用户名密码
		client.getCredentialsProvider().setCredentials(new AuthScope("192.168.1.107",808), new UsernamePasswordCredentials("", "")); 
		HttpHost proxy = new HttpHost("192.168.1.107", 808);  
		client.getParams().setParameter(ConnRoutePNames.DEFAULT_PROXY, proxy);  
		//设置代理结束
		HttpGet get = new HttpGet("http://www.163.com/");
		HttpResponse response = client.execute(get);
		//打印出状态码
		System.out.println(response.getStatusLine());
		//获得返回的内容,循环遍历出
		HttpEntity entity = response.getEntity();
		String str = null;
		if (entity != null) {
		    InputStream instream = entity.getContent();
		    BufferedReader reader = new BufferedReader(new InputStreamReader(instream));
		    while(( str = reader.readLine()) != null) {
		    	System.out.println(str);
		    }
		    instream.close();
		    reader.close();
		}
		//遍历内容结束

	}
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值