欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

JSONObject按put顺序排放与输出方式

程序员文章站 2022-03-29 07:57:19
jsonobject按put顺序排放与输出jsonobject put数据之后,排序会发生变化例如jsonobject object=new jsonobject(); object.put("aa...

jsonobject按put顺序排放与输出

jsonobject put数据之后,排序会发生变化

例如

jsonobject object=new jsonobject();  
object.put("aaa",111);  
object.put("bbb",222);  
object.put("ccc",333); 
object.put("ddd",444); 

输出结果可能为

{"aaa":111,"ddd":444,"ccc":333,"bbb":222}

因为jsonobject内部是用hashmap来存储的,所以输出是按key的排序来的,如果要让jsonobject按固定顺序(put的顺序)排列,可以修改jsonobject的定义hashmap改为linkedhashmap。

public jsonobject() {  
        this.map = new linkedhashmap();  //new hashmap();  
}  

即定义jsonobject可以这样:jsonobject jsonobj =new jsonobject(new linkedhashmap());

jsonobject object=new jsonobject(new linkedhashmap());
object.put("aaa",111);  
object.put("bbb",222);  
object.put("ccc",333); 
object.put("ddd",444); 

再次输出就会按顺序排了。

不知道大家想要的结果得到了没,反正我想要的结果已经得到。不解释,看下图--------->

JSONObject按put顺序排放与输出方式

jsonobject.put 的坑

net.sf.json.jsonobject
string timelinecontent=一个json
json.put("timelinecontent",timelinecontent);

此时框架会自动将string类型的timelinecontent当json put进去。。。

然后因为接口要求string不要jsonobject,就报

{"errorcode":-1,"errormessage":"internal server error","exceptionclassname":"org.springframework.http.converter.httpmessagenotreadableexception","exceptionmessage":"json parse error: cannot deserialize instance of `java.lang.string` out of start_object token; nested exception is com.fasterxml.jackson.databind.exc.mismatchedinputexception: cannot deserialize instance of `java.lang.string` out of start_object token\n at [source: (pushbackinputstream); line: 1, column: 397] (through reference chain: java.util.arraylist[0]->com.homethy.persistence.domain.leadtimeline[\"timelinecontent\"])","exceptiontime":"2019-06-19 08:59:12"}

没找指定类型为string不做转换的方法

暂时解决办法

json.put("timelinecontent",timelinecontent==null?null:" "+timelinecontent);

然后接口方就能正确识别了。。。

以上为个人经验,希望能给大家一个参考,也希望大家多多支持。