最近搞一个扣网页内容的SessionBean,需要模拟客户端post提交,然后得到servlet返回的结果。
采用Jakarta的HttpClient API解决之.
HttpClient扩展和增强了标准java.net包,是一个内容广泛的代码库,功能极其丰富,能够构造出各
种使用HTTP协议的分布式应用,或者也可以嵌入到现有应用,为应用增加访问HTTP协议的能力
要求:
1:CLASSPATH中有commons-httpclient.jar,common-logging.jar
2:确保%JAVA_HOME% /jre/lib/security/java.security文件包含这行代码:
security.provider.2= com.sun.net.ssl.internal.ssl.Provider。
一:GET方法测试代码:
/*
* Created on Sep 25, 2006
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package co.iproxy.http;
import java.io.IOException;
import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.HttpException;
import org.apache.commons.httpclient.HttpStatus;
import org.apache.commons.httpclient.methods.GetMethod;
/** */ /**
* @author lichunlei
*
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
public class HttpClientGetMethodTest
... {
public static void main(String[] args)
... {
HttpClient client = new HttpClient();
String url = " http://192.168.0.79:9080/Icare/IcareTest/index.jsp " ;
GetMethod method = new GetMethod(url);
try
... {
client.executeMethod(method);
if (method.getStatusCode() == HttpStatus.SC_OK)
... {
String response = method.getResponseBodyAsString();
System.out.println(response);
}
}
catch (HttpException e)
... {
e.printStackTrace();
}
catch (IOException e)
... {
e.printStackTrace();
}
finally
... {
method.releaseConnection();
method.recycle();
}
}
}
二:POST方法测试代码:
/**/ /*
* Created on Sep 25, 2006
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package co.iproxy.http;
import java.io.BufferedReader;
import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStream;
import org.apache.commons.httpclient.DefaultMethodRetryHandler;
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;
/** */ /**
* @author lichunlei
*
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
public class HttpClientPostMethodTest
... {
static int BASE_BODY_SIZE = 10240 ;
static int INC_BODY_SIZE = 51200 ;
public static void main(String[] args)
... {
String request = null ;
String url = " http://132.201.69.80:5080/BISWeb/Servicelet " ;
String result = null ;
String filePath = " D:/OPS_piese_idl36(from cvs)/Ntelagent/co/iproxy/http/request.txt " ;
File f = new File(filePath);
FileReader fileReader = null ;
try
... {
fileReader = new FileReader(f);
BufferedReader bufferedReader = new BufferedReader(fileReader);
String currentLine;
StringBuffer content = new StringBuffer();
while ((currentLine = bufferedReader.readLine()) != null )
... {
content.append(currentLine);
}
request = content.toString();
}
catch (Exception e1)
... {
// TODO Auto-generated catch block
e1.printStackTrace();
}
System.out.println( " the request is: " + request);
DefaultMethodRetryHandler retryhandler = new DefaultMethodRetryHandler();
retryhandler.setRequestSentRetryEnabled( true );
retryhandler.setRetryCount( 2 ); // retry 2 times
HttpClient httpClient = new HttpClient();
PostMethod method = new PostMethod(url);
InputStream data = new ByteArrayInputStream(request.getBytes());
method.setRequestBody(data);
method.setFollowRedirects( true );
method.setMethodRetryHandler(retryhandler);
try
... {
// execute the method
HostConfiguration cf = new HostConfiguration();
System.out.println( " use proxy " );
cf.setProxy( " 192.168.254.212 " , 4480 );
httpClient.setHostConfiguration(cf);
// httpClient.setTimeout(10000000);
int retcode = httpClient.executeMethod(method);
if (retcode == HttpStatus.SC_OK)
... {
byte [] responseBody = new byte [BASE_BODY_SIZE];
java.io.InputStream istream = method.getResponseBodyAsStream();
int npos = 0 ;
int nread = 0 ;
while ((nread = istream.read(responseBody, npos, responseBody.length - npos)) >= 0 )
... {
npos += nread;
if (npos >= responseBody.length)
... {
byte [] tmpBuf = new byte [npos + INC_BODY_SIZE];
System.arraycopy(responseBody, 0 , tmpBuf, 0 , npos);
responseBody = tmpBuf;
}
}
result = new String(responseBody, 0 , npos);
}
else
... {
throw new IOException( " failed to send request: retcode: " + retcode);
}
}
catch (Exception e)
... {
}
finally
... {
System.out.println( " lcl test in httpClient: " + result);
}
}
}
以上两个class已经包含了大部分常用的模拟http客户端的技术了,包括设置代理服务器,提交表单,得到返回结果等.
通过上面的测试代码,已经可以初步解决扣网页的问题了.现在备份一下我的实现方法(不是很通用,需要进一步完善), 同时也供大家参考.
/**/ /*
* Created on Sep 25, 2006
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package co.iproxy.http;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import org.apache.commons.httpclient.DefaultMethodRetryHandler;
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;
/** */ /**
* @author lichunlei
*
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
public class HttpService implements ServiceInterface ... {
private HttpClient httpClient = new HttpClient();
private DefaultMethodRetryHandler retryhandler = null ;
private String url = null ;
static int BASE_BODY_SIZE = 10240 ;
static int INC_BODY_SIZE = 51200 ;
public HttpService() throws MalformedURLException ... {
this .createMethodRetryHandler();
this .setHostConfiguration();
}
private void createMethodRetryHandler() ... {
retryhandler = new DefaultMethodRetryHandler();
retryhandler.setRequestSentRetryEnabled( true );
retryhandler.setRetryCount( 2 ); // retry 2 times
}
private void setHostConfiguration() throws MalformedURLException ... {
this .url = " http://132.201.69.80:5080/BISWeb/Servicelet " ;
String host = " 132.201.69.80 " ;
int port = 5080 ;
String protocol = " http " ;
if (url != null && ! url.trim().equals( "" )) ... {
java.net.URL nurl = new java.net.URL(url);
host = nurl.getHost();
port = nurl.getPort();
protocol = nurl.getProtocol();
}
setHostConfiguration(host, port, protocol);
}
/** */ /**
* Set host configuration
*
* @param host host name/ip
* @param port port number
* @param protocol protocol name (e.g. "jakarta.apache.org" )
*/
private void setHostConfiguration(String host, int port, String protocol) ... {
// Set the default host/protocol for the methods to connect to.
// This value will only be used if the methods are not given an absolute URI
httpClient.getHostConfiguration().setHost(
((host == null || host.trim().equals( "" )) ? " localhost " : host),
(port <= 0 ? 80 : port),
((protocol == null || protocol.trim().equals( "" ))
? " http "
: protocol));
}
public String process(String request) throws IOException ... {
String result = null ;
PostMethod method = new PostMethod(url);
InputStream data = new ByteArrayInputStream(request.getBytes());
method.setRequestBody(data);
method.setFollowRedirects( true );
method.setMethodRetryHandler(retryhandler);
try ... {
// execute the method
HostConfiguration cf = new HostConfiguration();
System.out.println( " use proxy " );
cf.setProxy( " 192.168.254.212 " , 4480 );
httpClient.setHostConfiguration(cf);
// httpClient.setTimeout(10000000);
int retcode = httpClient.executeMethod(method);
if (retcode == HttpStatus.SC_OK) ... {
byte [] responseBody = new byte [BASE_BODY_SIZE];
// byte[] responseBody = body;
java.io.InputStream istream = method.getResponseBodyAsStream();
int npos = 0 ;
int nread = 0 ;
while ((nread =
istream.read(
responseBody,
npos,
responseBody.length - npos))
>= 0 ) ... {
npos += nread;
if (npos >= responseBody.length) ... {
byte [] tmpBuf = new byte [npos + INC_BODY_SIZE];
System.arraycopy(responseBody, 0 , tmpBuf, 0 , npos);
responseBody = tmpBuf;
}
}
// byte[] responseBody = method.getResponseBody();
result = new String(responseBody, 0 , npos);
} else ... {
throw new IOException(
" failed to send request: retcode: " + retcode);
}
} catch (java.io.IOException iex) ... {
throw iex;
} finally ... {
// always release the connection after the request is done
method.releaseConnection();
if (data != null ) ... {
try ... {
data.close();
} catch (Exception ex) ... {
}
}
}
return result;
}
/**/ /* (non-Javadoc)
* @see co.iproxy.http.ServiceInterface#syncRequest(java.lang.String)
*/
public String syncRequest(String request) throws IOException ... {
return this .process(request);
}
/**/ /* (non-Javadoc)
* @see co.iproxy.http.ServiceInterface#asyncRequest(java.lang.String)
*/
public String request(String request) throws IOException ... {
return this .process(request);
}
}
分享到:
相关推荐
正如前面说到的,如果我们自己使用java.net.HttpURLConnection来搞定这些问题是很恐怖的事情,因此在开始之前我们先要介绍一下一个开放源码的项目,这个项目就是Apache开源组织中的httpclient,它隶属于Jakarta的...
使用HttpClient来模拟浏览器GET_POST HttpClient是一个Apache开源组织中的项目,隶属于Jakarta的commons项目,旨在简化HTTP客户端与服务器进行各种通讯编程。通过使用HttpClient,可以轻松地解决以前很头疼的事情,...
下面详细介绍如何使用 HttpClient 发起 GET 和 POST 请求。 ##### 1. GET 请求 使用 HttpClient 发起 GET 请求的步骤如下: 1. **创建 HttpClient 实例**:通过 `new HttpClient()` 创建一个 HttpClient 对象。 2...
通过上述步骤,我们可以利用HttpClient轻松实现HTTP GET请求,获取网页内容或API数据。此教程不仅介绍了HttpClient的基本使用方法,还强调了资源管理和异常处理的重要性,是Java开发者处理HTTP通信不可或缺的技能之...
1. **支持多种HTTP方法**:除了常见的GET、POST请求之外,HttpClient还支持PUT、HEAD等其他HTTP方法。 2. **自动处理重定向**:当服务器返回3XX状态码时,HttpClient会自动处理重定向逻辑。 3. **支持HTTPS**:除了...
然而,需要注意的是,HttpClient 3.1 已经是一个较老的版本,后续已被Apache HttpClient 4.x系列取代,后者引入了许多改进和新特性,比如更好的性能、HTTP/2支持和更现代的API设计。如果你正在开始新的项目,可能...
实现了所有 HTTP 的方法(GET,POST,PUT,HEAD 等) 支持自动转向 支持 HTTPS 协议 支持代理服务器等 下面将逐一介绍怎样使用这些功能。首先,我们必须安装好 HttpClient。 HttpClient 可以在...
HttpClient已经应用在很多的项目中,比如Apache Jakarta上很著名的另外两个开源项目Cactus和HTMLUnit都使用了HttpClient。 下载地址: http://hc.apache.org/downloads.cgi 1.2特性 1. 基于标准、纯净的java语言。...
例如,当需要访问需要用户登录或认证的页面时,HttpClient可以方便地管理COOKIE,模拟浏览器的行为。在处理文件上传的问题上,HttpClient也提供了便捷的方法,使得开发者可以轻松地发送POST请求并附带文件数据。 ...
HttpClient支持HTTP协议中的多种方法,如GET、POST、PUT、HEAD等。这些方法覆盖了HTTP请求的基本操作,使得开发者能够轻松地构建复杂的HTTP交互逻辑。 ##### 2. 支持重定向 在处理HTTP响应时,经常会遇到重定向的...
`HttpClient`是Apache Jakarta Commons下的一个子项目,用于提供高效、最新及功能丰富的HTTP客户端编程工具包。对于那些希望通过HTTP协议访问网络资源的Java应用程序而言,HttpClient提供了更为丰富和灵活的功能。 ...
它不仅能够处理基本的 GET 和 POST 请求,还支持各种高级特性,如重试策略、连接管理、多线程、Cookie 处理、URL 重定向等。 HttpClient 基本功能的使用 1. 环境准备:要使用 HttpClient,首先需要在项目中引入...
HttpPost httpPost = new HttpPost("http://example.com/api"); // 设置POST请求的参数,比如手机号码归属地查询的API接口 List<NameValuePair> params = new ArrayList(); params.add(new BasicNameValuePair(...
HttpClient4.1是Apache Jakarta Common项目的一个子项目,专门用于提供高效的HTTP客户端编程工具包,支持HTTP协议的最新版本和建议。这个库以其强大的功能和灵活性,在开发中被广泛使用,尤其是在处理网络请求和响应...
Apache HttpClient 是一个用于构建 HTTP 客户端的应用程序编程接口 (API),属于 Apache Jakarta Commons 的一部分。该库支持 HTTP 协议的最新标准,并提供了高效、功能丰富的客户端编程工具包。HttpClient 特别适合...
HttpClient支持多种HTTP方法,如GET、POST、PUT、DELETE等,每种方法对应一个特定的类,如HttpGet、HttpPost等。请求URI可以通过`URIUtils.createURI()`方法进行构建,方便地组装各个部分。 在处理HTTP请求时,还...
5. **模拟表单登录**:HttpClient 可以模拟浏览器提交表单数据,包括登录操作,通过设置合适的请求头和请求参数实现。 6. **HttpClient 连接 SSL**:配置 SSL 需要生成 KeyStore,配置 Tomcat 服务器支持 SSL,然后...
2. **全面的HTTP协议支持**: HttpClient 支持HTTP/1.1和部分HTTP/2协议,包括各种请求方法(GET、POST、PUT等),以及头信息、cookies、重定向、认证等功能。 3. **连接管理**: HttpClient 包含了一个复杂的连接...