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

json转换的简单应用

时间:2016-09-20 16:42:11      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:

 

 

import com.alibaba.fastjson.JSON;

        String strjson = request.getParameter("param");

        //url-json的转码解码
        String urlJson = URLEncoder.encode(strjson, "UTF-8"); 
        String strJson = URLDecoder.decode(urlJson, "UTF-8");

        //fastjson的转码解码
        Map<String, Object> paramlist = (Map<String, Object>) JSON.parse(strjson);
        String jsonStr = JSON.toJSONString(paramlist);
        
        //string和数组的转换,用,分割
        String ipArray [] = {"192.168.1.16","192.168.1.17","192.168.1.18"} ;
        String str = StringUtils.join(ipArray, ",");
        String [] strArr= str.split(",");

 

 

over

 

json转换的简单应用

标签:

原文地址:http://www.cnblogs.com/book-gary/p/5889185.html

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