HttpClient通过Post方式发送Json数据

服务器用的是Springmvc,接口内容:

 

[java] view plaincopy
print?
  1. @ResponseBody  
  2. @RequestMapping(value="/order",method=RequestMethod.POST)  
  3. public boolean order(HttpServletRequest request,@RequestBody List<Order> orders) throws Exception {  
  4.     AdmPost admPost = SessionUtil.getCurrentAdmPost(request);  
  5.     if(admPost == null){  
  6.         throw new RuntimeException("[OrderController-saveOrUpdate()] 当前登陆的用户职务信息不能为空!");  
  7.     }  
  8.     try {  
  9.         this.orderService.saveOrderList(orders,admPost);  
  10.         Loggers.log("订单管理",admPost.getId(),"导入",new Date(),"导入订单成功,订单信息--> " + GsonUtil.toString(orders, new TypeToken<List<Order>>() {}.getType()));  
  11.         return true;  
  12.     } catch (Exception e) {  
  13.         e.printStackTrace();  
  14.         Loggers.log("订单管理",admPost.getId(),"导入",new Date(),"导入订单失败,订单信息--> " + GsonUtil.toString(orders, new TypeToken<List<Order>>() {}.getType()));  
  15.         return false;  
  16.     }  
  17. }  


通过ajax访问的时候,代码如下:

 

 

[javascript] view plaincopy
print?
  1.                   $.ajax({  
  2.     type : "POST",  
  3.     contentType : "application/json; charset=utf-8",  
  4.     url : ctx + "order/saveOrUpdate",  
  5.     dataType : "json",  
  6.     anysc : false,  
  7.     data : {orders:[{orderId:"11",createTimeOrder:"2015-08-11"}]},  // Post 方式,data参数不能为空"",如果不传参数,也要写成"{}",否则contentType将不能附加在Request Headers中。  
  8.     success : function(data){  
  9.         if (data != undefined && $.parseJSON(data) == true){  
  10.             $.messager.show({  
  11.                 title:'提示信息',  
  12.                 msg:'保存成功!',  
  13.                 timeout:5000,  
  14.                 showType:'slide'  
  15.             });  
  16.         }else{  
  17.             $.messager.alert('提示信息','保存失败!','error');  
  18.         }  
  19.     },  
  20.     error : function(XMLHttpRequest, textStatus, errorThrown) {  
  21.         alert(errorThrown + ':' + textStatus); // 错误处理  
  22.     }  
  23. });  


通过HttpClient方式访问,代码如下:

 

 

 

[java] view plaincopy
print?
    1. package com.ec.spring.test;  
    2.   
    3. import java.io.IOException;  
    4. import java.nio.charset.Charset;  
    5.   
    6. import org.apache.commons.logging.Log;  
    7. import org.apache.commons.logging.LogFactory;  
    8. import org.apache.http.HttpResponse;  
    9. import org.apache.http.HttpStatus;  
    10. import org.apache.http.client.HttpClient;  
    11. import org.apache.http.client.methods.HttpPost;  
    12. import org.apache.http.entity.StringEntity;  
    13. import org.apache.http.impl.client.DefaultHttpClient;  
    14. import org.apache.http.util.EntityUtils;  
    15.   
    16. import com.google.gson.JsonArray;  
    17. import com.google.gson.JsonObject;  
    18.   
    19. public class APIHttpClient {  
    20.   
    21.     // 接口地址  
    22.     private static String apiURL = "http://192.168.3.67:8080/lkgst_manager/order/order";  
    23.     private Log logger = LogFactory.getLog(this.getClass());  
    24.     private static final String pattern = "yyyy-MM-dd HH:mm:ss:SSS";  
    25.     private HttpClient httpClient = null;  
    26.     private HttpPost method = null;  
    27.     private long startTime = 0L;  
    28.     private long endTime = 0L;  
    29.     private int status = 0;  
    30.   
    31.     /** 
    32.      * 接口地址 
    33.      *  
    34.      * @param url 
    35.      */  
    36.     public APIHttpClient(String url) {  
    37.   
    38.         if (url != null) {  
    39.             this.apiURL = url;  
    40.         }  
    41.         if (apiURL != null) {  
    42.             httpClient = new DefaultHttpClient();  
    43.             method = new HttpPost(apiURL);  
    44.   
    45.         }  
    46.     }  
    47.   
    48.     /** 
    49.      * 调用 API 
    50.      *  
    51.      * @param parameters 
    52.      * @return 
    53.      */  
    54.     public String post(String parameters) {  
    55.         String body = null;  
    56.         logger.info("parameters:" + parameters);  
    57.   
    58.         if (method != null & parameters != null  
    59.                 && !"".equals(parameters.trim())) {  
    60.             try {  
    61.   
    62.                 // 建立一个NameValuePair数组,用于存储欲传送的参数  
    63.                 method.addHeader("Content-type","application/json; charset=utf-8");  
    64.                 method.setHeader("Accept", "application/json");  
    65.                 method.setEntity(new StringEntity(parameters, Charset.forName("UTF-8")));  
    66.                 startTime = System.currentTimeMillis();  
    67.   
    68.                 HttpResponse response = httpClient.execute(method);  
    69.                   
    70.                 endTime = System.currentTimeMillis();  
    71.                 int statusCode = response.getStatusLine().getStatusCode();  
    72.                   
    73.                 logger.info("statusCode:" + statusCode);  
    74.                 logger.info("调用API 花费时间(单位:毫秒):" + (endTime - startTime));  
    75.                 if (statusCode != HttpStatus.SC_OK) {  
    76.                     logger.error("Method failed:" + response.getStatusLine());  
    77.                     status = 1;  
    78.                 }  
    79.   
    80.                 // Read the response body  
    81.                 body = EntityUtils.toString(response.getEntity());  
    82.   
    83.             } catch (IOException e) {  
    84.                 // 网络错误  
    85.                 status = 3;  
    86.             } finally {  
    87.                 logger.info("调用接口状态:" + status);  
    88.             }  
    89.   
    90.         }  
    91.         return body;  
    92.     }  
    93.   
    94.     public static void main(String[] args) {  
    95.         APIHttpClient ac = new APIHttpClient(apiURL);  
    96.         JsonArray arry = new JsonArray();  
    97.         JsonObject j = new JsonObject();  
    98.         j.addProperty("orderId", "中文");  
    99.         j.addProperty("createTimeOrder", "2015-08-11");  
    100.         arry.add(j);  
    101.         System.out.println(ac.post(arry.toString()));  
    102.     }  
    103.   
    104.     /** 
    105.      * 0.成功 1.执行方法失败 2.协议错误 3.网络错误 
    106.      *  
    107.      * @return the status 
    108.      */  
    109.     public int getStatus() {  
    110.         return status;  
    111.     }  
    112.   
    113.     /** 
    114.      * @param status 
    115.      *            the status to set 
    116.      */  
    117.     public void setStatus(int status) {  
    118.         this.status = status;  
    119.     }  
    120.   
    121.     /** 
    122.      * @return the startTime 
    123.      */  
    124.     public long getStartTime() {  
    125.         return startTime;  
    126.     }  
    127.   
    128.     /** 
    129.      * @return the endTime 
    130.      */  
    131.     public long getEndTime() {  
    132.         return endTime;  
    133.     }  
    134. }  

转载于:https://www.cnblogs.com/ceshi2016/p/7481408.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/454765.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

openssl、ssh

PKI&#xff1a;公钥基础设施&#xff0c;保证服务器向客户端发送的证书的可靠性&#xff1b;签证机构&#xff1a;CA注册机构&#xff1a;RA证书吊销列表&#xff1a;CRL证书存取库&#xff1a;CAB威瑞信——verisignGlobalSign赛门铁克AsiaCOM国际标准化组织定义了证书的标准…

php图型分析插件,IMAGE缩略图插件

应用信息 名称: IMAGE缩略图插件 售价: (免费) 应用ID: IMAGE 最低要求: Z-BlogPHP 1.5.1 Zero Build 151740版 本: 2 发布日期: 2014-08-27PHP最低版本要求: 5.3 更新日期: 2018-05-21立即购买 加入购物车作者信息 开发者ID: 十五楼的鸟儿 本站用户组: 管理员 联系邮箱: adm…

职业生涯步步高

在担任公司高管的几年间&#xff0c;我面试过数以百计的各个层面的员工&#xff0c;其中最让我感到遗憾的一个现象就是很多人有着非常好的素质&#xff0c;甚至有的还是名校的毕业生&#xff0c;因为不懂得去规划自己的职业&#xff0c;在工作多年后&#xff0c;依然拿着微薄的…

httpd2.2配置文件详解

一丶Apache常用目录详解1) /etc/httpd/conf/httpd.confhttpd.conf是Apache的主配文件&#xff0c;整个Apache也不过就是这个配置文件&#xff0c;里面几乎包含了所有的配置。有的distribution都将这个文件拆分成数个小文件分别管理不同的参数。但是主要配置文件还是以这个文件为…

2017.9.5 postgresql加密函数的使用

需要安装的插件的名字&#xff1a;pgcrypto官网地址&#xff1a;https://www.postgresql.org/docs/9.4/static/pgcrypto.htmlstackoverflow:https://stackoverflow.com/questions/8000740/how-do-i-install-pgcrypto-in-postgresql-9-1-on-windows/46046367#46046367https://st…

php 序列化方法,PHP序列化操作方法分析

本文实例讲述了PHP序列化操作方法。分享给大家供大家参考&#xff0c;具体如下&#xff1a;序列化就是将变量数据转换为字符串(跟类型转换机制不同)&#xff0c;一般应用于存储数据(文件)&#xff0c;然后在别的情形下恢复(反序列化)序列化&#xff1a;$val serialize($var);f…

Redis入门到精通-Redis数据类型

2019独角兽企业重金招聘Python工程师标准>>> 登录Redis数据库 [rootlocalhost bin]# /usr/local/redis/bin/redis-cli String类型 ​ String 数据结构是简单的key-value类型&#xff0c;value其实不仅是String&#xff0c;也可以是数字&#xff0c;是包含很多种类型…

装机之 BIOS、EFI与UEFI详解

在我们的电脑中&#xff0c;都有一块黑色的小芯片。但是请千万不要小看它&#xff0c;如果它损坏或者数据错误乱套的话&#xff0c;恭喜&#xff0c;如果不会“救回”这个小芯片&#xff0c;那么这台电脑可以挂闲鱼卖零件了…… 这个小芯片是什么呢&#xff1f;对&#xff0c;…

c/c++笔试题

微软亚洲技术中心的面试题&#xff01;&#xff01;&#xff01; 1&#xff0e;进程和线程的差别。 线程是指进程内的一个执行单元,也是进程内的可调度实体. 与进程的区别: (1)调度&#xff1a;线程作为调度和分配的基本单位&#xff0c;进程作为拥有资源的基本单位 (2)并发性&…

php 模板 php + mysql + myodbc,连接MySQL数据库在ASP中,就用MyODBC

我们大家都知道ASP与MySQL连接现在应用最为广泛的两种办法是&#xff0c;一是使用组件&#xff0c;经常使用的是MySQL(和PHP搭配之最佳组合)X&#xff0c;可惜价格很贵。另一个就是用MyODBC来连接MySQL数据库&#xff0c;下面我们就来看看第二种方式。 试验的平台&#xff1a; …

Android Gradle和Gradle插件区别

2019独角兽企业重金招聘Python工程师标准>>> 一、引言 1、什么是Gradle?什么是Gradle插件? build.gradle中依赖的classpath com.android.tools.build:gradle:2.1.2和gradle-wrapper.properties中的distributionUrlhttps\://services.gradle.org/distributions/gra…

装机之MBR和GPT

MBR分区 MBR的意思是“主引导记录”&#xff0c;是IBM公司早年间提出的。它是存在于磁盘驱动器开始部分的一个特殊的启动扇区。这个扇区包含了已安装的操作系统系统信息&#xff0c;并用一小段代码来启动系统。如果你安装了Windows&#xff0c;其启动信息就放在这一段代码中—…

Linux 文件打乱顺序

cat in.txt | awk BEGIN{srand()}{print rand()"\t"$0} | sort -k1,1 -n | cut -f2- > out.txt sort -R in.txt > out.txt 后者要计算每行的hash&#xff0c;再排序&#xff0c;在文件内容比较多的情况下前者要比后者快得多 参考文献&#xff1a; http://blog.…

php 计算 目录大小,php计算整个目录大小的方法

本文实例讲述了php计算整个目录大小的方法。分享给大家供大家参考。具体实现方法如下&#xff1a;/*** Calculate the full size of a directory** author Jonas John* version 0.2* link http://www.jonasjohn.de/snippets/php/dir-size.htm* param string $DirectoryPath Dir…

实验报告3

中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 陆圣宇 年级 2014 区队 三 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017 学年 第 一 学期 一、实验目的 1&am…

装机之windows10和ubuntu双系统

制作系统U盘 下载Ubuntu16.04 我们首先去Ubuntu的官网下载一个Ubuntu16.04的iso镜像文件。当然里面也有优麒麟&#xff0c;其实就是把Ubuntu16.04汉化了一下&#xff0c;个人推荐安装Ubuntu16.04 体验上可能好一些。 利用软碟通制作 不会的可以查看此教程https://blog.csdn…

函数之内置函数1

什么是内置函数&#xff1a;别人已经定义好了的函数&#xff0c;我们只管拿来调用就好 locals&#xff1a;局部作用域中的变量 globals&#xff1a;全局作用域中的变量 这两者在全局执行&#xff0c;结果一样&#xff1b;在局部中locals表示函数内的名字&#xff0c;返回的是一…

matlab var std,Matlab var std cov 函数解析

在Matlab中使用var求样本方差&#xff0c;使用std求标准差&#xff01;首先来了解一下方差公式&#xff1a;p [-0.92 0.73 -0.47 0.74 0.29; -0.08 0.86 -0.67 -0.52 0.93]p -0.9200 0.7300 -0.4700 0.7400 0.2900-0.0800 0.8600 -0.6700 -0.5200 0.9300…

Java中什么是匿名对象,空参构造方法输出创建了几个匿名对象,属性声明成static...

package com.swift; //使用无参构造方法自动生成对象&#xff0c;序号不断自增 public class Person {private static int count; //如果在定义类时&#xff0c;使用的是静态的属性&#xff0c;则得到的结果是不同的。count生命周期长&#xff0c;与类相同public int id;public…

装机之制作系统U盘

工具&#xff1a;UltraISO&#xff08;软碟通&#xff09;&#xff0c;iso镜像 在制作系统U盘的时候我们需要去下一个软件——UltraISO&#xff08;软碟通&#xff09;&#xff0c;这个自己去百度搜索一下应该就能出来的。下载安装完以后&#xff0c;我们打开软碟通的界面打开…