jsonobject类方法,jsonobject用法详解

  jsonobject类方法,jsonobject用法详解

  

目录

JSON对象。tojsonstring包含或排除指定的属性演示程序对象到JSONString遇到的坑引入砰的一声文件使用对象输出(同国际组织)国际组织类型的地图

 

  

JSONObject.toJSONString包含或排除指定的属性

将一个实体对象转换成数据字符串JSON.toJSONString()

 

  使用提供的序列化过滤器类可以指定转换时要包含的属性,或者指定转换时要排除的属性。

  JSONObject.toJSONString()默认忽略值为null的属性.

  使用对象提供的以下方法将实体对象转换成数据字符串:(JSONObject提供的toJSONString源码自己还没看)

  公共静态最终字符串到JSON字符串(Object Object,SerializerFeature.features){ serialize writer out=new serialize writer();try { JSON serializer serializer=new JSON serializer(out);for(com。阿里巴巴。快速JSON。序列化程序。序列化程序功能:功能){序列化程序。config(特性,真);} serializer.write(对象);退了出去。tostring();}最后{出去。close();} }

  

演示程序

导入com。阿里巴巴。快速JSON。JSON对象;导入com。阿里巴巴。快速JSON。序列化程序。序列化程序功能;导入com。阿里巴巴。快速JSON。支持。春天。属性预过滤器;/** * 使用使用将实体对象转换成数据字符串测试类*/public class FastJsonApplication { public static void main(String[]args){ User User=new User();用户。setid(1L);用户。设置用户名(张三);用户。设置密码(" ");user.setMobile(空);user.setCountry(中国);user.setCity(武汉);String jsonUser=null/** *指定排除属性过滤器和包含属性过滤器* 指定排除属性过滤器:转换成数据字符串时,排除哪些属性* 指定包含属性过滤器:转换成数据字符串时,包含哪些属性*/String[]排除属性={ country , city };String[] includeProperties={id ,用户名,手机 };property prefiles filters=new property prefiles();PropertyPreFilters .mysimplepropertyprinfilter排除过滤器=过滤器。添加过滤器();排除过滤器。添加排除项(排除属性);PropertyPreFilters .mysimplepropertyprinfilter包含filter=filters。添加过滤器();包括过滤器。添加包含(包含属性);/** * 情况一:默认忽略值为空的属性*/JSON user=JSON对象。tojsonstring(用户,序列化功能.蛮格式);

 

   System.out.println("情况一:n" + jsonUser); /** * 情况二:包含值为null的属性 */ jsonUser = JSONObject.toJSONString(user, SerializerFeature.PrettyFormat, SerializerFeature.WriteMapNullValue); System.out.println("情况二:n" + jsonUser); /** * 情况三:默认忽略值为null的属性,但是排除country和city这两个属性 */ jsonUser = JSONObject.toJSONString(user, excludefilter, SerializerFeature.PrettyFormat); System.out.println("情况三:n" + jsonUser); /** * 情况四:包含值为null的属性,但是排除country和city这两个属性 */ jsonUser = JSONObject.toJSONString(user, excludefilter, SerializerFeature.PrettyFormat, SerializerFeature.WriteMapNullValue); System.out.println("情况四:n" + jsonUser); /** * 情况五:默认忽略值为null的属性,但是包含id、username和mobile这三个属性 */ jsonUser = JSONObject.toJSONString(user, includefilter, SerializerFeature.PrettyFormat); System.out.println("情况五:n" + jsonUser); /** * 情况六:包含值为null的属性,但是包含id、username和mobile这三个属性 */ jsonUser = JSONObject.toJSONString(user, includefilter, SerializerFeature.PrettyFormat, SerializerFeature.WriteMapNullValue); System.out.println("情况六:n" + jsonUser); } /** * 用户实体类 */ public static class User { private Long id; private String username; private String password; private String mobile; private String country; private String city; //此处省略了相应属性的set、get方法}运行结果:

  

 

  

 

  结果说明:

  情况一和情况二说明了public static String toJSONString(Object object, SerializeFilter filter, SerializerFeature… features)这个方法将实体对象转换成JSON字符串时,默认是忽略掉值为null的属性,并且说明了如何使得转换后的JSON字符串包含值为null的属性。情况三和情况四说明了如何使用SerializeFilter来排除指定属性,使得转换后的JSON字符串中不包含这些属性。情况五和情况六说明了如何使用SerializeFilter来包含指定属性,使得转换后的JSON字符串中只包含这些属性。

 

  

JSONObject toJSONString 遇到的坑

 

  

引入pom文件

 <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.73</version> <scope>test</scope> </dependency>

 

  

使用JSONObject 输出 int类型的map

是非json格式

 

  

import java.util.HashMap;import java.util.Map;import com.alibaba.fastjson.JSONObject;public class JsonTest { public static void main(String[] args) { Map<Integer, String> map = new HashMap<>(); map.put(1, "aaasa"); map.put(2, "bbbbb"); map.put(3, "ccccc"); map.put(4, "ddddd"); map.put(5, "eeeee"); System.out.println(JSONObject.toJSONString(map)); }}

输出结果

 

  

 

  

 

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

郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。

留言与评论(共有 条评论)
   
验证码: