fastjson字段顺序问题
2018-06-27 09:44:21来源:博客园 阅读 ()
最近在项目中用到阿里的fastjson,发现一个问题:
JSONObject fastJson = new JSONObject(); fastJson.put("1", "1"); fastJson.put("2", "1"); fastJson.put("3", "1"); fastJson.put("11", "1"); fastJson.put("22", "1"); fastJson.put("33", "1"); fastJson.put("111", "1"); fastJson.put("222", "1"); fastJson.put("333", "1"); System.out.println(fastJson.toJSONString());
上述代码的输出为:
元素顺序和put的顺序并不相同
查看了一下fastjson的源码
发现其默认的构造函数中使用的是HashMap,想要元素顺序和put的顺序相同,需要新建对象时指定为有序,这样使用的就是LinkedHashMap,是有序的
测试一下:
JSONObject fastJson = new JSONObject(true); fastJson.put("1", "1"); fastJson.put("2", "1"); fastJson.put("3", "1"); fastJson.put("11", "1"); fastJson.put("22", "1"); fastJson.put("33", "1"); fastJson.put("111", "1"); fastJson.put("222", "1"); fastJson.put("333", "1"); System.out.println(fastJson.toJSONString());
输出结果为:
元素顺序和put的顺序相同
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
下一篇:实现登录验证码
- 利用反射给对象按顺序赋值 2020-05-28
- Dubbo 2.7.7 发布,FastJson 升级了! 2020-05-25
- LeetCode 面试题58 - I. 翻转单词顺序 2020-05-16
- Java流程控制 2020-05-06
- LeetCode 面试题21. 调整数组顺序使奇数位于偶数前面 2020-05-05
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash