Http发送post(x-www-form-urlencoded)请求

Posted caozx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Http发送post(x-www-form-urlencoded)请求相关的知识,希望对你有一定的参考价值。

 技术图片

使用jar包:

<!--commons-httpclient-->
<dependency>
      <groupId>commons-httpclient</groupId>
      <artifactId>commons-httpclient</artifactId>
      <version>3.1</version>
   </dependency>
</dependencies>

代码:

try {
            String postURL = "http://*.*.*.*:8080/cjs/ad";
            PostMethod postMethod = null;
            postMethod = new PostMethod(postURL) ;
       //添加请求头数据 postMethod.setRequestHeader(
"Content-Type", "application/x-www-form-urlencoded;charset=utf-8") ; //参数设置,需要注意的就是里边不能传NULL,要传空字符串 NameValuePair[] data = { new NameValuePair("_ArgStr1","*"),
new NameValuePair("_ArgStr2","*") }; postMethod.setRequestBody(data); org.apache.commons.httpclient.HttpClient httpClient
= new org.apache.commons.httpclient.HttpClient(); int response = httpClient.executeMethod(postMethod); // 执行POST方法 String result = postMethod.getResponseBodyAsString() ; System.out.println(response); System.out.println(result); } catch (Exception e) { // logger.info("请求异常"+e.getMessage(),e); throw new RuntimeException(e.getMessage()); }

以上是关于Http发送post(x-www-form-urlencoded)请求的主要内容,如果未能解决你的问题,请参考以下文章

get和post的区别

php获取POST数据的三种方法

jmeter请求之get与post的区别?

微信小程序 wx.request POST请求------中文乱码问题

Angularjs `$http` 发送 POST 而不是 GET

发送 HTTP/2 POST 请求 NodeJS