如何用JSONObject.toJSONString()包含或排除指定的属性

发布时间:2022-03-03 13:39:37 作者:iii
来源:亿速云 阅读:1175

这篇文章主要介绍“如何用JSONObject.toJSONString()包含或排除指定的属性”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“如何用JSONObject.toJSONString()包含或排除指定的属性”文章能帮助大家解决问题。

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

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

FastJson提供的SerializeFilter类可以指定转换时要包含的属性,或者指定转换时要排除的属性。

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

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

public static final String toJSONString(Object object, SerializerFeature... features) {
        SerializeWriter out = new SerializeWriter();
        try {
            JSONSerializer serializer = new JSONSerializer(out);
            for (com.alibaba.fastjson.serializer.SerializerFeature feature : features) {
                serializer.config(feature, true);
            }
            serializer.write(object);
            return out.toString();
        } finally {
            out.close();
        }
    }

演示程序

import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson.serializer.SerializerFeature;
import com.alibaba.fastjson.support.spring.PropertyPreFilters;
/**
 * 使用FastJson将实体对象转换成Json字符串测试类
 */
public class FastJsonApplication {
     public static void main(String[] args) {
        User user = new User();
        user.setId(1L);
        user.setUsername("张三");
        user.setPassword("");
        user.setMobile(null);
        user.setCountry("中国");
        user.setCity("武汉");
     String jsonUser = null;
        /**
         * 指定排除属性过滤器和包含属性过滤器
         * 指定排除属性过滤器:转换成JSON字符串时,排除哪些属性
         * 指定包含属性过滤器:转换成JSON字符串时,包含哪些属性
         */
        String[] excludeProperties = {"country", "city"};
        String[] includeProperties = {"id", "username", "mobile"};
        PropertyPreFilters filters = new PropertyPreFilters();
        PropertyPreFilters.MySimplePropertyPreFilter excludefilter = filters.addFilter();
        excludefilter.addExcludes(excludeProperties);
        PropertyPreFilters.MySimplePropertyPreFilter includefilter = filters.addFilter();
        includefilter.addIncludes(includeProperties);
        /**
         * 情况一:默认忽略值为null的属性
         */
        jsonUser = JSONObject.toJSONString(user, SerializerFeature.PrettyFormat);
        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方法
}

运行结果:

如何用JSONObject.toJSONString()包含或排除指定的属性

如何用JSONObject.toJSONString()包含或排除指定的属性

结果说明:

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));
    }
}

输出结果

如何用JSONObject.toJSONString()包含或排除指定的属性

如何用JSONObject.toJSONString()包含或排除指定的属性

关于“如何用JSONObject.toJSONString()包含或排除指定的属性”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注亿速云行业资讯频道,小编每天都会为大家更新不同的知识点。

推荐阅读:
  1. 7.ADSL和网络硬件组成
  2. 6.路由器与防火墙介绍

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

jsonobject.tojsonstring

上一篇:JS实现网络请求的方式有哪些

下一篇:Python中交叉验证的方法有哪些

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》