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();
		}
		//遍历内容结束

	}
}

 

你可能感兴趣的:(JavaSE)