码迷,mamicode.com
首页 > Web开发 > 详细

Json转Map

时间:2016-07-25 16:24:15      阅读:295      评论:0      收藏:0      [点我收藏+]

标签:

  1.   http = new HttpClient**();//此处封装一下发请求的类  
  2.         Map<String, String> map = new HashMap<String, String>();  
  3.         map.put("sql", sql);  
  4.         JSONObject json = JSONObject.fromObject(vMap);  
  5.         map.put("vMap", json.toString());          
  6.         http.post(url+ "/common***/action/save.action", map);  
  7.         String str = "";  
  8.         if (http.getResponse().getStatus() == 200) {  
  9.             try {  
  10.                 str = http.getResponse().getBody();  
  11.             }catch (Exception e1) {  
  12.                 e1.printStackTrace();  
  13.                 throw new Exception("未取到元数据");  
  14.             }  
  15.         }  
  16.         return str;  
  17.   
  18.       
  19.       





服务器端Action接收:

  1. String sql = request.getParameter("sql");  
  2.         String str = request.getParameter("valueMap");  


方法:

    1. public static Map parserToMap(String s){  
    2.     Map map=new HashMap();  
    3.     JSONObject json=JSONObject.fromObject(s);  
    4.     Iterator keys=json.keys();  
    5.     while(keys.hasNext()){  
    6.         String key=(String) keys.next();  
    7.         String value=json.get(key).toString();  
    8.         if(value.startsWith("{")&&value.endsWith("}")){  
    9.             map.put(key, parserToMap(value));  
    10.         }else{  
    11.             map.put(key, value);  
    12.         }  
    13.   
    14.     }  
    15.     return map;  

Json转Map

标签:

原文地址:http://www.cnblogs.com/prefect/p/5703592.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!