`
ispring
  • 浏览: 356002 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

HttpClient 一定要设置超时和示范连接

阅读更多
package cn.com.sinosoft.test.http;

import org.apache.commons.httpclient.HostConfiguration;
import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.HttpStatus;
import org.apache.commons.httpclient.methods.PostMethod;
import org.apache.commons.httpclient.methods.StringRequestEntity;
import org.apache.commons.httpclient.params.HttpConnectionManagerParams;

public class PostSample {
public static void main(String[] args) {
  HttpClient httpClient = new HttpClient();
  // 设置代理
  // HostConfiguration hcf = new HostConfiguration();
  // hcf.setProxy("localhost", 8118);
  // httpClient.setHostConfiguration(hcf);

  HttpConnectionManagerParams managerParams = httpClient
    .getHttpConnectionManager().getParams();
  // 设置连接超时时间(单位毫秒)
  managerParams.setConnectionTimeout(30000);
  // 设置读数据超时时间(单位毫秒)
  managerParams.setSoTimeout(120000);

  String url = "http://localhost/testweb/commserver";
  PostMethod postMethod = new PostMethod(url);

  // 将请求参数XML的值放入postMethod中
  String strResponse = null;
  try {
   postMethod.setRequestEntity(new StringRequestEntity(
     createRequestXML(), "text/xml", "GBK"));
   int statusCode = httpClient.executeMethod(postMethod);
   if (statusCode != HttpStatus.SC_OK) {
    throw new IllegalStateException("Method failed: "
      + postMethod.getStatusLine());
   }
   strResponse = postMethod.getResponseBodyAsString();
  } catch (Exception ex) {
   throw new IllegalStateException(ex.toString());
  } finally {
   // 释放连接
   postMethod.releaseConnection();
  }
  System.out.println(strResponse);

}
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics