http post json

最近在模拟post json数据到服务端,然后返回json信息,当然也要实现模拟服务端的代码,服务单可以用controller实现,但是发现一个问题,就是返回来的是个页面,页面中才包含返回的json数据,怎么取出去来了,网上博客一般写的都是客户端的post,后来猛然想到以前和老师学安卓的时候的有段代码就是把返回的json数据放在页面上,才发现可以用getWriter()把页面中的json数据单独打在页面中

代码实现如下:

模拟的服务端:

[java]  view plain  copy
  1. @RequestMapping(value = "/loginTest", method = RequestMethod.POST)  
  2. public void test(HttpServletRequest request,HttpServletResponse response) throws Exception {  
  3.     //JSONObject json=JSONObject.fromObject(data);  
  4.      // 读取请求内容  
  5.        BufferedReader br = new BufferedReader(new InputStreamReader(request.getInputStream()));  
  6.        String line = null;  
  7.        StringBuilder sb = new StringBuilder();  
  8.        while((line = br.readLine())!=null){  
  9.            sb.append(line);  
  10.        }  
  11.   
  12.        // 将资料解码  
  13.        String reqBody = sb.toString();  
  14.     JSONObject json=JSONObject.fromObject(reqBody);  
  15.     String data = "{'isAdmin':'true', 'usename':wsf}";  
  16.          
  17.     PrintWriter writer = response.getWriter();  
  18.     writer.write(data);    //这里是你要返回的字符串  
  19.     writer.flush();  
  20.     writer.close();       
  21.     }  


模拟的发送端:

[java]  view plain  copy
  1. /** 
  2.  * @file TestPost.java 
  3.  * @date 2016年9月10日 
  4.  * @version 3.4.1 
  5.  * 
  6.  * Copyright (c) 2013 Sihua Tech, Inc. All Rights Reserved. 
  7.  */  
  8. package cn.com.dongyaTest.controller;  
  9.   
  10. import java.io.IOException;  
  11. import java.io.InputStream;  
  12. import java.io.OutputStreamWriter;  
  13. import java.net.HttpURLConnection;  
  14. import java.net.URL;  
  15.   
  16. import org.apache.commons.io.IOUtils;  
  17. import org.apache.http.HttpEntity;  
  18. import org.apache.http.HttpRequest;  
  19. import org.apache.http.HttpResponse;  
  20. import org.apache.http.HttpStatus;  
  21. import org.apache.http.client.methods.HttpPost;  
  22. import org.apache.http.entity.StringEntity;  
  23. import org.apache.http.impl.client.DefaultHttpClient;  
  24. import org.apache.http.message.BasicHeader;  
  25. import org.apache.http.protocol.HTTP;  
  26. import org.apache.http.util.EntityUtils;  
  27. import net.sf.json.JSONObject;  
  28.   
  29.   
  30. /** 
  31.  *  
  32.  * 
  33.  * @author chengjian.he 
  34.  * @version  3.4, 2016年9月10日 下午3:03:50  
  35.  * @since   Yeexun 3.4 
  36.  */  
  37. public class TestPost {  
  38.   
  39.     public static int postBody(String urlPath, String data) throws Exception {  
  40.         try{    
  41.                     // Configure and open a connection to the site you will send the request    
  42.                     URL url = new URL(urlPath);    
  43.                     HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();    
  44.                     // 设置doOutput属性为true表示将使用此urlConnection写入数据    
  45.                     urlConnection.setDoOutput(true);    
  46.                     // 定义待写入数据的内容类型,我们设置为application/x-www-form-urlencoded类型    
  47.                     urlConnection.setRequestProperty("content-type""application/x-www-form-urlencoded");    
  48.                     // 得到请求的输出流对象    
  49.                     OutputStreamWriter out = new OutputStreamWriter(urlConnection.getOutputStream());    
  50.                     // 把数据写入请求的Body    
  51.                     out.write(data);    
  52.                     out.flush();    
  53.                     out.close();   
  54.                         
  55.                     // 从服务器读取响应    
  56.                     InputStream inputStream = urlConnection.getInputStream();    
  57.                     String encoding = urlConnection.getContentEncoding();    
  58.                     String body = IOUtils.toString(inputStream, encoding);    
  59.                     if(urlConnection.getResponseCode()==200){  
  60.                     return 200;  
  61.                     }else{  
  62.                     throw new Exception(body);  
  63.                     }  
  64.                 }catch(IOException e){  
  65.                 throw e;  
  66.                 }  
  67.         }  
  68.       
  69.         
  70.       public static JSONObject doPost(String url,JSONObject json){  
  71.         DefaultHttpClient client = new DefaultHttpClient();  
  72.         HttpPost post = new HttpPost(url);  
  73.         JSONObject response = null;  
  74.         try {  
  75.           StringEntity s = new StringEntity(json.toString());  
  76.           s.setContentEncoding("UTF-8");  
  77.           s.setContentType("application/json");//发送json数据需要设置contentType  
  78.           post.setEntity(s);  
  79.           HttpResponse res = client.execute(post);  
  80.           if(res.getStatusLine().getStatusCode() == HttpStatus.SC_OK){  
  81.             HttpEntity entity = res.getEntity();  
  82.             String result = EntityUtils.toString(res.getEntity());// 返回json格式:  
  83.             response = JSONObject.fromObject(result);  
  84.           }  
  85.         } catch (Exception e) {  
  86.           throw new RuntimeException(e);  
  87.         }  
  88.         return response;  
  89.       }  
  90.   
  91.   
  92.         public static void main(String[] args) {  
  93.         try {  
  94.         //  String data = "{'username':'shihuan', 'password':123456}";  
  95.         //TestPost.postBody("http://localhost:8009/wechatyeexun/loginTest.do", data);  
  96.              String url = "http://localhost:8009/wechatyeexun/loginTest.do";  
  97.                 JSONObject params = new JSONObject();  
  98.                 params.put("username""wsf");  
  99.                 params.put("password""123");  
  100.                 String ret = doPost(url, params).toString();  
  101.                 System.out.println(ret);  
  102.                /* final String APPLICATION_JSON = "application/json"; 
  103.                  
  104.                 final String CONTENT_TYPE_TEXT_JSON = "text/json"; 
  105.                 DefaultHttpClient httpClient = new DefaultHttpClient(); 
  106.                 HttpPost httpPost = new HttpPost(url); 
  107.                 httpPost.addHeader(HTTP.CONTENT_TYPE, APPLICATION_JSON); 
  108.                  
  109.                 StringEntity se = new StringEntity(params.toString()); 
  110.                 se.setContentType(APPLICATION_JSON); 
  111.                 se.setContentEncoding(new BasicHeader(HTTP.CONTENT_TYPE, APPLICATION_JSON)); 
  112.                 httpPost.setEntity(se); 
  113.                 httpClient.execute(httpPost);*/  
  114.         } catch (Exception e) {  
  115.         e.printStackTrace();  
  116.         }  
  117.         }  
  118.           
  119.           
  120. }  
PB HttpPost JSON是一种通过PB(Protocol Buffers)协议将JSON数据发送到服务器的方法。PB是一种轻量级的数据交换格式,其优点在于序列化后的数据体积小、解析速度快,并且可以跨平台使用。 在PB HttpPost JSON中,数据首先被转换成PB格式,然后通过HttpPost方法发送到服务器。这里的JSON指的是传输的数据是使用JSON格式进行编码的。 使用PB HttpPost JSON的步骤如下: 1. 构建JSON数据对象:将需要发送的数据按照JSON格式构建成一个对象。 2. 将JSON数据对象转换为PB格式:使用PB库提供的工具方法,将JSON对象转换为PB格式,得到PB格式的数据。 3. 创建HttpPost请求:使用HttpPost对象创建一个HTTP请求,设定请求的URL和请求方法为POST。 4. 将PB数据作为请求体:将PB格式的数据作为请求体放入HttpPost请求中。 5. 发送请求:使用HttpClient发送HttpPost请求到服务器。 6. 服务器处理请求:服务器接收到请求后,解析PB数据,并按照业务需求进行相应的处理。 7. 服务器返回响应:服务器处理完请求后,将处理结果封装成响应数据,然后返回给客户端。 8. 客户端解析响应:客户端接收到服务器返回的响应数据后,使用PB库提供的工具方法将PB格式的数据转换为JSON格式,然后解析JSON数据得到需要的结果。 总而言之,使用PB HttpPost JSON可以方便地将JSON数据发送到服务器,并实现与服务器的数据交互。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值