HttpClient 获取网页内容

package cn.org.nterc.gtzdms.utils;

import org.apache.commons.httpclient.MultiThreadedHttpConnectionManager;
import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.HttpStatus;
import org.apache.commons.httpclient.NameValuePair;
import org.apache.commons.httpclient.methods.GetMethod;
import org.apache.commons.httpclient.methods.PostMethod;
import org.apache.log4j.Logger;

import java.io.*;
import java.util.*;

/**
 * Created by IntelliJ IDEA.
 * User: user
 * Date: 2009-5-11
 * Time: 14:57:44
 * 使用httpClient模拟Http访问,得到访问页面的内容
 */
public class HttpClientUtil {
    private static MultiThreadedHttpConnectionManager connectionManager =
            new MultiThreadedHttpConnectionManager();
    private static final Logger log = Logger.getLogger(HttpClientUtil.class);
    //连接超时时间
    private static int connectionTimeOut = 15000;
    private static int socketTimeOut = 15000;
    private static int readTimeOut = 20000;
    private static int maxConnectionPerHost = 5;
    private static int maxTotalConnections = 40;

    // 标志初始化是否完成的flag
    private static boolean initialed = false;

    // 初始化ConnectionManger的方法
    public static void SetPara() {
        connectionManager.getParams().setConnectionTimeout(connectionTimeOut);
        connectionManager.getParams().setSoTimeout(socketTimeOut);
        connectionManager.getParams().setDefaultMaxConnectionsPerHost(
                maxConnectionPerHost);
        connectionManager.getParams().setMaxTotalConnections(maxTotalConnections);
//        connectionManager.get
        initialed = true;
    }

    public static String getResponseByGetMethod(String url){
        return getResponseByGetMethod(url,"GB2312");
    }

    /**
     * 根据GET方法得到页面的返回值
     *
     * @param url 目的地址
     * @param charSet   编码格式
     * @return String   内容
     */
    public static String getResponseByGetMethod(String url,String charSet) {
        HttpClient client = new HttpClient(connectionManager);
        if (!initialed) {
            SetPara();
        }
        GetMethod getMethod = new GetMethod(url);
        getMethod.getParams().setSoTimeout(readTimeOut);
//        System.out.println("timeout = " + client.getHttpConnectionManager().getParams().getConnectionTimeout());
        StringBuffer contentBuffer = new StringBuffer();
        try {
            int statusCode = client.executeMethod(getMethod);
            if (statusCode == HttpStatus.SC_OK) {
                InputStream in = getMethod.getResponseBodyAsStream();
                BufferedReader reader = new BufferedReader(new InputStreamReader(in,getMethod.getResponseCharSet()));
                String inputLine = null;
                while((inputLine = reader.readLine()) != null){
                    contentBuffer.append(inputLine);
                    contentBuffer.append("/n");
                }
                in.close();
                return convertStringCode(contentBuffer.toString(),getMethod.getResponseCharSet(),charSet);
            }else{
                log.error("访问页面出错 返回:  "+getMethod.getStatusLine());
            }

        } catch (IOException e) {
//            System.out.println("e.getMessage() = " + e.getMessage());
            log.error("请求该页面出现异常:" + e.getMessage());
        }finally {
            getMethod.releaseConnection();
        }
        return "";
    }

    /**
     * 设置POST提交的参数
     * @param method    POST方法
     * @param parmMap   参数映射
     */
    private static void setRequestBody(PostMethod method,HashMap parmMap){
        Set keySet = parmMap.keySet();
        Iterator it = keySet.iterator();
        List parmList = new ArrayList();
        while(it.hasNext()){
            String key = (String) it.next();
            String value = (String) parmMap.get(key);
            //设置参数
            NameValuePair nameValuePair = new NameValuePair(key,value);
            parmList.add(nameValuePair);
        }
        method.setRequestBody((NameValuePair[]) parmList.toArray(new NameValuePair[parmList.size()]));
    }

    public static String getgetResponseByPostMethod(String url,HashMap parmMap){
        return getResponseByPostMethod(url,"gb2312",parmMap);
    }
    /**
     * 以POST方法得到网页内容
     * @param url       目的地址
     * @param charSet   编码格式
     * @param parmMap   post 提交的参数,key 参数名称,velue 参数名,均为String类型
     * @return String   返回内容
     */
    public static String getResponseByPostMethod(String url,String charSet, HashMap parmMap){
        HttpClient client = new HttpClient(connectionManager);
        if (!initialed) {
            SetPara();
        }
        PostMethod postMethod = new PostMethod(url);
        if(parmMap != null){
            setRequestBody(postMethod,parmMap);
        }
        postMethod.getParams().setSoTimeout(readTimeOut);
        StringBuffer contentBuffer = new StringBuffer();
        try {
            int statusCode = client.executeMethod(postMethod);
            if (statusCode == HttpStatus.SC_OK) {
                InputStream in = postMethod.getResponseBodyAsStream();
                BufferedReader reader = new BufferedReader(new InputStreamReader(in,postMethod.getResponseCharSet()));
                String inputLine = null;
                while((inputLine = reader.readLine()) != null){
                    contentBuffer.append(inputLine);
                    contentBuffer.append("/n");
                }
                in.close();
                return convertStringCode(contentBuffer.toString(),postMethod.getResponseCharSet(),charSet);
            }else{
                log.error("访问页面出错 返回:  "+postMethod.getStatusLine());
            }

        } catch (IOException e) {
            log.error("请求该页面出现异常:" + e.getMessage());
        }finally {
            postMethod.releaseConnection();
        }
        return "";
    }

    /**
     * 转换编码格式
     * @param source        源字符串
     * @param srcEncode     源字符串编码格式
     * @param destEncode    需要转换的编码格式
     * @return String
     */
    private static String convertStringCode(String source, String srcEncode,
   String destEncode) {
  if (source != null && !"".equals(source)) {
   try {
    return new String(source.getBytes(srcEncode), destEncode);
   } catch (UnsupportedEncodingException e) {
    e.printStackTrace();
    return "";
   }
  } else {
   return "";
  }
 }

    public static void main(String[] args) {
//        String content = HttpClientUtil.getResponseByGetMethod("http://www.baidu.com/");
       String content = HttpClientUtil.getResponseByGetMethod("http://www.baidu.com/");
        System.out.println("content = " + content);
    }
}

更多HttpClient的相关内容参考

http://blog.csdn.net/cocojiji5/archive/2008/10/10/3048695.aspx

 

http://www.ibm.com/developerworks/cn/opensource/os-httpclient/#N1004B

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
压缩包中含有多个文档,从了解httpclient到应用。 httpClient 1httpClint 1.1简介 HttpClient是Apache Jakarta Common下的子项目,用来提供高效的、最新的、功能丰富的支持HTTP协议的客户端编程工具包,并且它支持HTTP协议最新的版本和建议。HttpClient已经应用在很多的项目中,比如Apache Jakarta上很著名的另外两个开源项目Cactus和HTMLUnit都使用了HttpClient。 下载地址:  http://hc.apache.org/downloads.cgi 1.2特性 1. 基于标准、纯净的java语言。实现了Http1.0和Http1.1 2. 以可扩展的面向对象的结构实现了Http全部的方法(GET, POST, PUT, DELETE, HEAD, OPTIONS, and TRACE)。 3. 支持HTTPS协议。 4. 通过Http代理建立透明的连接。 5. 利用CONNECT方法通过Http代理建立隧道的https连接。 6. Basic, Digest, NTLMv1, NTLMv2, NTLM2 Session, SNPNEGO/Kerberos认证方案。 7. 插件式的自定义认证方案。 8. 便携可靠的套接字工厂使它更容易的使用第三方解决方案。 9. 连接管理器支持多线程应用。支持设置最大连接数,同时支持设置每个主机的最大连接数,发现并关闭过期的连接。 10. 自动处理Set-Cookie中的Cookie。 11. 插件式的自定义Cookie策略。 12. Request的输出流可以避免流中内容直接缓冲到socket服务器。 13. Response的输入流可以有效的从socket服务器直接读取相应内容。 14. 在http1.0和http1.1中利用KeepAlive保持持久连接。 15. 直接获取服务器发送的response code和 headers。 16. 设置连接超时的能力。 17. 实验性的支持http1.1 response caching。 18. 源代码基于Apache License 可免费获取。 1.3版本 org.apache.http.impl.client.HttpClients 与 org.apache.commons.httpclient.HttpClient目前后者已被废弃,apache已不再支持。 一般而言,使用HttpClient均需导入httpclient.jar与httpclient-core.jar2个包。 1.4使用方法与步骤 开发环境:需要 使用HttpClient发送请求、接收响应很简单,一般需要如下几步即可。 1.创建HttpClient对象。 HttpClient client = new HttpClient(); 2.创建请求方法的实例,并指定请求URL。如果需要发送GET请求,创建HttpGet对象;如果需要发送POST请求,创建HttpPost对象。 //使用GET方法,如果服务器需要通过HTTPS连接,那只需要将下面URL中的 http换成https HttpMethod method = new GetMethod("http://www.baidu.com"); //使用POST方法 HttpMethod method = new PostMethod("http://java.sun.com";); 3. 如果需要发送请求参数,可调用HttpGet、HttpPost共同的setParams(HetpParams params)方法来添加请求参数;对于HttpPost对象而言,也可调用setEntity(HttpEntity entity)方法来设置请求参数。 3.调用HttpClient对象的execute(HttpUriRequest request)发送请求,该方法返回一个HttpResponse。 client.executeMethod(method); 5. 调用HttpResponse的getAllHeaders()、getHeaders(String name)等方法可获取服务器的响应头;调用HttpResponse的getEntity()方法可获取HttpEntity对象,该对象包装了服务器的响应内容。程序可通过该对象获取服务器的响应内容。 6. 释放连接。无论执行方法是否成功,都必须释放连接 //打印服务器返回的状态 System.out.println(method.getStatusLine()); //打印返回的信息 System.out.println(method.getResponseBodyAsString(
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值