`
longgangbai
  • 浏览: 7331750 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

apatche组件的研究和使用

阅读更多
package cn.com.huawei.opensource.common.https.tools;

import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;

import org.apache.commons.httpclient.DefaultHttpMethodRetryHandler;
import org.apache.commons.httpclient.Header;
import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.HttpException;
import org.apache.commons.httpclient.HttpStatus;
import org.apache.commons.httpclient.NameValuePair;
import org.apache.commons.httpclient.methods.ByteArrayRequestEntity;
import org.apache.commons.httpclient.methods.GetMethod;
import org.apache.commons.httpclient.methods.PostMethod;
import org.apache.commons.httpclient.params.HttpMethodParams;
/**
* 处理远程的请求的方法的应用
* @author bailonggang
* 2009-1-2
* 下午04:38:58
*/
public class HTTPClient {
/**
*
* @param httpurl
* @return
*/
public String  execute(String httpurl)
{
//构建HttpClient的实例的应用
HttpClient httpclient=new HttpClient();
//创建GET方法的实例
GetMethod getmethod=new GetMethod(httpurl);
//创建的POST方法的实例    PostMethod postmethod=new PostMethod(httpurl);

//使用系统提供的默认的恢复策略
getmethod.getParams().setParameter(HttpMethodParams.RETRY_HANDLER, new DefaultHttpMethodRetryHandler());
try {
//执行GET方法的请求的实例
int statusCode=httpclient.executeMethod(getmethod);
//查看响应的编码的方式
String responseEncoding=getmethod.getRequestCharSet();
System.out.println("the response encoding is :"+responseEncoding);
//检测发送是否成功的
if(statusCode!=HttpStatus.SC_OK)
{
System.out.println("Method failure:"+getmethod.getStatusLine());
}
//得到响应的消息体
byte[] responseBody=getmethod.getResponseBody();
return new String(responseBody);
} catch (HttpException e) {
          System.out.println("please check you provided http address!"+e);
}catch(IOException e)
{
//发生网络异常信息
e.printStackTrace();
}finally{
//释放连接
getmethod.releaseConnection();
}
return null;

}
/**
* 使用HttpClient调用远程servlet
* @param httpurl
* @param xmlInfo
* @param map
* @return
*/
@SuppressWarnings("unchecked")
public InputStream executeHttp(String httpurl, String xmlInfo,Map<String ,String> map) {
HttpClient httpclient = new HttpClient();
//使用Post发送消息的方法的应用
PostMethod postmethod = new PostMethod(httpurl);
ByteArrayRequestEntity  requestEntity=new ByteArrayRequestEntity(xmlInfo.getBytes(),"text/html; charset=UTF-8");
InputStream inputstream=null;
//设置请求的实体
postmethod.setRequestEntity(requestEntity);
//设置请求的格式
try {
//设置消息头信息
for (Iterator it =map.entrySet().iterator(); it.hasNext();)
{
Entry<String,String> header = (Entry<String,String>) it.next();
String key=header.getKey();
String value=header.getValue();
postmethod.setRequestHeader(key, value);
}
//发送消息的方法的
httpclient.executeMethod(postmethod);

//发送成功接受请求的信息
if(postmethod.getStatusCode()==HttpStatus.SC_OK)
{
inputstream=postmethod.getResponseBodyAsStream();
}else{
System.out.println("unexpected failure:"+postmethod.getStatusLine());
}

} catch (HttpException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
postmethod.releaseConnection();
}
return inputstream;
}
/**
* 使用HttpClient调用远程servlet
* @param httpurl
* @param xmlInfo
* @param map
* @return
*/
@SuppressWarnings("unchecked")
public InputStream executeHttp(String httpurl, Map<String,String> paramMaps,Map<String ,String> map) {
HttpClient httpclient = new HttpClient();
//使用Post发送消息的方法的应用
PostMethod postmethod = new PostMethod(httpurl);
InputStream inputstream=null;
//设置请求的填入各个表单域的值
List<NameValuePair> paramList=new ArrayList<NameValuePair>();
NameValuePair[] params=new NameValuePair[paramMaps.size()];
for (Iterator it =map.entrySet().iterator(); it.hasNext();)
{
Entry<String,String> header = (Entry<String,String>) it.next();
String key=header.getKey();
String value=header.getValue();
            NameValuePair  param=new NameValuePair();
            param.setName(key);
            param.setValue(value);
            paramList.add(param);
}
paramList.toArray(params);
postmethod.setRequestBody(params);
//设置请求的格式
try {
//设置消息头信息
for (Iterator it =map.entrySet().iterator(); it.hasNext();)
{
Entry<String,String> header = (Entry<String,String>) it.next();
String key=header.getKey();
String value=header.getValue();
postmethod.setRequestHeader(key, value);
}
//发送消息的方法的
  int statusCode=httpclient.executeMethod(postmethod);
  //自动转向的方式的应用
  //HttpClient对于要求接受后继服务的请求,象POST和PUT等不能自动处理转发301或者302
if(statusCode==HttpStatus.SC_MOVED_PERMANENTLY||statusCode==HttpStatus.SC_MOVED_TEMPORARILY)
{
Header locationHeader=postmethod.getRequestHeader("location");
String location=null;
if(locationHeader!=null)
{
location=locationHeader.getValue();
    System.out.println("the page was redirected to:"+location);
   
}else{
System.out.println("Location field value is null!");
}
}
//发送成功接受请求的信息
if(postmethod.getStatusCode()==HttpStatus.SC_OK)
{
inputstream=postmethod.getResponseBodyAsStream();
}else{
System.out.println("unexpected failure:"+postmethod.getStatusLine());
}
} catch (HttpException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
postmethod.releaseConnection();
}
return inputstream;
}
}


如果疑问请与我联系: longgangbai@sina.com


分享到:
评论

相关推荐

    apatche 6.0

    它可以运行在几乎所有广泛使用的计算机平台上,由于其跨平台和安全性被广泛使用,是最流行的Web服务器端软件之一。同时Apache音译为阿帕奇,是北美印第安人的一个部落,叫阿帕奇族,在美国的西南部。也是一个基金会...

    java apatche ftp 支持断点续传等

    `TestFTP_ddxc`这个文件可能是一个测试程序,包含了如何使用Apache FTP库进行文件上传和下载的示例代码。在这个程序中,开发者可能演示了如何打开和关闭连接,创建或改变远程目录,上传和下载文件,以及如何处理断点...

    json第三方jar包.zip

    使用apatche的jar包 已有 commons beanutils 1 8 3 jar 复制 commons collections 3 2 1 jar 对java util的增强 commons lang 2 5 jar 对java lang的增强 commons logging 1 1 1 jar 日志 "&gt;JSON 类库...

    Apache的数据源及数据库连接池JAR集合.rar

    Apache最新的Dcommons-dbcp2-2.7.0和commons-pool2-2.7.0数据源及数据库连接池Jar包

    apache-kylin-2.5.1-bin-hbase1x.tar.gz

    - **元数据管理**:Kylin使用HBase和HDFS来存储元数据,确保高可用性和持久性。 3. **与HBase的关系**: - **数据存储**:在Kylin中,预计算的立方体数据默认存储在HBase中,利用其列式存储和分布式特性,实现...

    Json类库,json架包,json lib jdk,Json必备

    * 使用apatche的jar包 * commons-beanutils-1.8.3.jar(复制) * commons-collections-3.2.1.jar(对java.util的增强) * commons-lang-2.5.jar(对java.lang的增强) * commons-logging-1.1.1.jar(日志 )

    json类库,json必备,json-jdk

    * 使用apatche的jar包 * commons-beanutils-1.8.3.jar(复制) * commons-collections-3.2.1.jar(对java.util的增强) * commons-lang-2.5.jar(对java.lang的增强) * commons-logging-1.1.1.jar(日志 )

    Alog DaXu 3.0.0.15 UTF8.rar

    Alog日志系统原名Logs,现...a.Apatche服务器请在设置后,复制rewrite目录下.htaccess文件到网站根目录。 b.IIS服务器请在设置后,复制rewrite目录下httpd.ini文件到网站根目录。 c.其他服务器,如Nginx等参照设置。

    Alog Ben v3.0.0.15

    URL路由开关说明当URL路由设置为开启时页面路径将使用伪静态,请根据服务器情况设置响应的伪静态规则。a.Apatche服务器请在设置后,复制rewrite目录下.htaccess文件到网站根目录。b.IIS服务器请在设置后,复制...

    cloudtest-1.0.4-b201302231138PM Release

    CloudTest is an open source project initiated by the individual, which is distributed on Apatche Licenses 2.0 releases. Every organization or individual is fully granted for viewing its source code or...

    echo3 JavaScript 实例

    apatche开源项目echo的第三版示例,全用的javascript,强烈建议那些想写桌面型的胖客户端看看。其中的源码都可以下载的,或者用那些chm查看器解压缩就可以了

    Alog Ben V3.0.0.15 简体utf-8版本.rar

    URL路由开关说明 --------------------------------------------------------- 当URL路由设置为开启时页面路径将使用伪静态,请根据服务器情 况设置响应的伪静态规则。 a.Apatche服务器请在设置后,复制rewrite目录...

    最新vRules4j-2.1.2-b20090622.zip下载

    vRules4j是由个人发起的开源项目,它基于Apatche Licenses 2.0 免费发布。任何组织或者个人都可以查看其源码并根据自己的需要修改源码,同时在商业应用中具有最大的授权许可。具体Licenses 条款请参阅...

Global site tag (gtag.js) - Google Analytics