您的位置:首页 > 理论基础 > 计算机网络

HttpClient使用例子

2014-06-06 16:33 369 查看


HttpClient使用例子

(2011-09-21 14:51:38)


转载▼

标签:


java


httpclient


post


url


传递


参数


获取


it

分类: JAVA
HttpClient client = new HttpClient();
String url = http://localhost:8080/ana/workFlowOaInterface.do?action=oaTask;
PostMethod postMethod = new PostMethod(url);
//设置参数编码为gbk

post.getParams().setParameter(HttpMethodParams.HTTP_CONTENT_CHARSET,"gbk");
//构造键值对参数
NameValuePair[] data = { new NameValuePair("processInstanceId", "230"), new NameValuePair("approveFlag", "1") };
// 把参数值放入postMethod中
postMethod.setRequestBody(data);
//执行
client.executeMethod(postMethod);
//读取内容

byte[] responseBody = postMethod.getResponseBody();

//处理内容

System.out.println(new String(responseBody));
System.out.println("getStatusLine:"+postMethod.getStatusLine());

System.out.println("~~~"+postMethod.getResponseBodyAsString());

System.out.println("statusCode:"+statusCode);

//打印结果页面

String response = new String(postMethod.getResponseBodyAsString().getBytes("utf-8"));

//打印返回的信息

System.out.println("response:"+response);
//释放连接
postMethod.releaseConnection();
如果传递的是中文参数,有可能会出现乱码,通过设置正确的参数编码来解决。

在被调用的接口方,直接通过request.getParameter的方式获取。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: