java HttpClient传输json格式的参数实例讲解

 更新时间:2021年01月21日 10:57:46   作者:乔叶叶  
这篇文章主要介绍了java HttpClient传输json格式的参数实例讲解,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

最近的一个接口项目,传的参数要求是json,需要特殊处理一下。

重点是这两句话:

httpPost.setHeader("Content-Type", "application/json;charset=UTF-8");
se.setContentType(CONTENT_TYPE_TEXT_JSON);

这两句话的作用与jmeter的设置header信息类似

package com.base;
import java.io.UnsupportedEncodingException;
import org.apache.http.HttpEntity;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.impl.conn.PoolingClientConnectionManager;
import org.apache.http.util.EntityUtils;
/** 
 * @author QiaoJiafei 
 * @version 创建时间:2015年11月4日 下午1:55:45 
 * 类说明 
 */
public class HttpGetByJson {
 public static void main(String args[]) throws Exception{
  final String CONTENT_TYPE_TEXT_JSON = "text/json";
  DefaultHttpClient client = new DefaultHttpClient(
   new PoolingClientConnectionManager());
  
  String url = "http://172.16.30.226:8091/svc/authentication/register";
 String js = "{\"userName\":\"18600363833\",\"validateChar\":\"706923\",\"randomChar\":\"706923\",\"password\":\"123456\",\"confirmPwd\":\"123456\",\"recommendMobile\":\"\",\"idCard\":\"320601197608285792\",\"realName\":\"阙岩\",\"verifyCode\"}";
  
 HttpPost httpPost = new HttpPost(url); 
 httpPost.setHeader("Content-Type", "application/json;charset=UTF-8");
  
 StringEntity se = new StringEntity(js);
 se.setContentType(CONTENT_TYPE_TEXT_JSON);
 httpPost.setEntity(se);
 
 CloseableHttpResponse response2 = null;
 
 response2 = client.execute(httpPost);
 HttpEntity entity2 = null;
 entity2 = response2.getEntity();
 String s2 = EntityUtils.toString(entity2, "UTF-8");
 System.out.println(s2);
 }
 
}

补充:HttpClient以json形式的参数调用http接口并对返回的json数据进行处理(可以带文件)

1、参数的url就是被调用的地址,map是你要传的参数。参数转成json我使用的是gson方式转换的。

主要使用的jar包有httpclient-4.5.3.jar、httpcore-4.4.6.jar、commons-codec-1.9.jar、gson-2.2.4.jar和commons-logging-1.2.jar。

如果发送的post请求想传送文件,需添加httpmime-4.5.3.jar包,并设置如下代码:

HttpEntity multipartEntityBuilder = MultipartEntityBuilder.create().addBinaryBody("file", new File("D:\\workspace\\programm\\WebContent\\programm\\1991.zip")).build();

第一个参数表示请求字段名,第二个参数就是文件。

还想添加参数则

HttpEntity multipartEntityBuilder = MultipartEntityBuilder.create().addTextBody("name", "张三").addBinaryBody("file", new File("D:\\workspace\\programm\\WebContent\\programm\\1991.zip")).build();
httpPost.setEntity(multipartEntityBuilder);
import java.io.IOException;
import java.util.Map;
import org.apache.http.HttpEntity;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;
import com.google.gson.Gson;
public class HttpClientUtil {
 
 private final static String CONTENT_TYPE_TEXT_JSON = "text/json";
 
 public static String postRequest(String url, Map<String, Object> param) throws ClientProtocolException, IOException{
 
 CloseableHttpClient client = HttpClients.createDefault();
 HttpPost httpPost = new HttpPost(url);
 httpPost.setHeader("Content-Type", "application/json;charset=UTF-8");
 
 Gson gson = new Gson();
 String parameter = gson.toJson(param);
 StringEntity se = new StringEntity(parameter);
 se.setContentType(CONTENT_TYPE_TEXT_JSON);
 httpPost.setEntity(se);
 CloseableHttpResponse response = client.execute(httpPost);
 HttpEntity entity = response.getEntity();
 String result = EntityUtils.toString(entity, "UTF-8");
 
 return result;
 }
}

2、返回的结果也可以使用gson转换成对象进行下一步操作。

import com.google.gson.Gson;
public class GsonUtil {
 public static <T> T jsonToObject(String jsonData, Class<T> type) {
 Gson gson = new Gson();
 T result = gson.fromJson(jsonData, type);
 return result;
 }
 
 public static void main(String[] args) {
 String json = "{'id':'1','name':'zhang','address':'Hubei'}";
 jsonToObject(json, Person.class);
 Person person = jsonToObject(json, Person.class);
 System.out.println(person);
 }
}

建立要转成的对象的类。

import java.util.Date;
public class Person {
 
 private int id;
 
 private String name;
 
 private int age;
 
 private String address;public int getId() {
 return id;
 }
 public void setId(int id) {
 this.id = id;
 }
 public String getName() {
 return name;
 }
 public void setName(String name) {
 this.name = name;
 }
 public int getAge() {
 return age;
 }
 public void setAge(int age) {
 this.age = age;
 }
 public String getAddress() {
 return address;
 }
 public void setAddress(String address) {
 this.address = address;
 }
 @Override
 public String toString() {
 return "Person [id=" + id + ", name=" + name + ", age=" + age + ", address=" + address + "]";
 }
}

3、发送以键值对形式的参数的post请求

package com.avatarmind.httpclient;
import java.util.ArrayList;
import java.util.List;
import org.apache.http.HttpEntity;
import org.apache.http.NameValuePair;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.util.EntityUtils;
public class HttpClient3 {
 
 public static void main(String[] args) throws Exception {
 CloseableHttpClient client = HttpClients.createDefault();
 String url = "http://yuntuapi.amap.com/datamanage/table/create";
 HttpPost httpPost = new HttpPost(url);
 // 参数形式为key=value&key=value
 List<NameValuePair> formparams = new ArrayList<NameValuePair>();
 formparams.add(new BasicNameValuePair("key", "060212638b94290e3dd0648c15753b64"));
 formparams.add(new BasicNameValuePair("name", "火狐"));
  
 // 加utf-8进行编码
 UrlEncodedFormEntity uefEntity = new UrlEncodedFormEntity(formparams, "UTF-8");
 httpPost.setEntity(uefEntity);
 CloseableHttpResponse response = client.execute(httpPost);
 HttpEntity entity = response.getEntity();
 String result = EntityUtils.toString(entity, "UTF-8");
 System.out.println(result);
 }
}

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。如有错误或未考虑完全的地方,望不吝赐教。

相关文章

  • eclipse连接不到genymotion问题的解决方案

    eclipse连接不到genymotion问题的解决方案

    今天小编就为大家分享一篇关于eclipse连接不到genymotion问题的解决方案,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧
    2019-03-03
  • 浅谈 java中ArrayList、Vector、LinkedList的区别联系

    浅谈 java中ArrayList、Vector、LinkedList的区别联系

    ArrayList,Vector底层是由数组实现,LinkedList底层是由双线链表实现,从底层的实现可以得出性能问题ArrayList,Vector插入速度较慢,查询速度较快,而LinkedList插入速度较快,而查询速度较慢。再者由于Vevtor使用了线程安全锁,所以ArrayList的运行效率高于Vector
    2015-11-11
  • Kotlin语言编程Regex正则表达式实例详解

    Kotlin语言编程Regex正则表达式实例详解

    这篇文章主要为大家介绍了Kotlin语言编程Regex正则表达式实例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2022-08-08
  • 使用JPA双向多对多关联关系@ManyToMany

    使用JPA双向多对多关联关系@ManyToMany

    这篇文章主要介绍了使用JPA双向多对多关联关系@ManyToMany,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2022-06-06
  • JAVA8 List<List<Integer>> list中再装一个list转成一个list操作

    JAVA8 List<List<Integer>> list中再装一个list转成一个list操

    这篇文章主要介绍了JAVA8 List<List<Integer>> list中再装一个list转成一个list操作,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2020-08-08
  • SSM如何实现在Controller中添加事务管理

    SSM如何实现在Controller中添加事务管理

    这篇文章主要介绍了SSM如何实现在Controller中添加事务管理,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2022-02-02
  • java实现身份证号码验证的示例代码

    java实现身份证号码验证的示例代码

    这篇文章主要为大家详细介绍了如何利用java语言实现身份证号码验证的功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下
    2023-09-09
  • Spring中ClassPath指的是哪些地方

    Spring中ClassPath指的是哪些地方

    在Spring应用中,ClassPath指的是应用程序的类加载路径,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2024-06-06
  • Java线程Timer定时器用法详细总结

    Java线程Timer定时器用法详细总结

    在本篇文章里小编给大家整理的是关于Java线程Timer定时器用法详细总结内容,需要的朋友们学习下吧。
    2020-02-02
  • Java选择排序和垃圾回收机制详情

    Java选择排序和垃圾回收机制详情

    这篇文章主要介绍Java选择排序和垃圾回收机制,创建对象就会占据内存,如果程序在执行过程中不能再使用某个对象,这个对象是徒耗内存的垃圾,下面来看看文章具体内容吧
    2021-10-10

最新评论