溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

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

發(fā)布時(shí)間:2022-03-03 13:39:37 來(lái)源:億速云 閱讀:1179 作者:iii 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要介紹“如何用JSONObject.toJSONString()包含或排除指定的屬性”的相關(guān)知識(shí),小編通過(guò)實(shí)際案例向大家展示操作過(guò)程,操作方法簡(jiǎn)單快捷,實(shí)用性強(qiáng),希望這篇“如何用JSONObject.toJSONString()包含或排除指定的屬性”文章能幫助大家解決問(wèn)題。

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

將一個(gè)實(shí)體對(duì)象轉(zhuǎn)換成Json字符串 JSON.toJSONString()

FastJson提供的SerializeFilter類可以指定轉(zhuǎn)換時(shí)要包含的屬性,或者指定轉(zhuǎn)換時(shí)要排除的屬性。

JSONObject.toJSONString()默認(rèn)忽略值為null的屬性.

使用JSONObject提供的以下方法將實(shí)體對(duì)象轉(zhuǎn)換成Json字符串:(JSONObject 提供的toJSONString 源碼 自己還沒(méi)看)

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將實(shí)體對(duì)象轉(zhuǎn)換成Json字符串測(cè)試類
 */
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("中國(guó)");
        user.setCity("武漢");
     String jsonUser = null;
        /**
         * 指定排除屬性過(guò)濾器和包含屬性過(guò)濾器
         * 指定排除屬性過(guò)濾器:轉(zhuǎn)換成JSON字符串時(shí),排除哪些屬性
         * 指定包含屬性過(guò)濾器:轉(zhuǎn)換成JSON字符串時(shí),包含哪些屬性
         */
        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);
        /**
         * 情況一:默認(rèn)忽略值為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);
        /**
         * 情況三:默認(rèn)忽略值為null的屬性,但是排除country和city這兩個(gè)屬性
         */
        jsonUser = JSONObject.toJSONString(user, excludefilter, SerializerFeature.PrettyFormat);
        System.out.println("情況三:\n" + jsonUser);
        /**
         * 情況四:包含值為null的屬性,但是排除country和city這兩個(gè)屬性
         */
        jsonUser = JSONObject.toJSONString(user, excludefilter, SerializerFeature.PrettyFormat, SerializerFeature.WriteMapNullValue);
        System.out.println("情況四:\n" + jsonUser);
        /**
         * 情況五:默認(rèn)忽略值為null的屬性,但是包含id、username和mobile這三個(gè)屬性
         */
        jsonUser = JSONObject.toJSONString(user, includefilter, SerializerFeature.PrettyFormat);
        System.out.println("情況五:\n" + jsonUser);
        /**
         * 情況六:包含值為null的屬性,但是包含id、username和mobile這三個(gè)屬性
         */
        jsonUser = JSONObject.toJSONString(user, includefilter, SerializerFeature.PrettyFormat, SerializerFeature.WriteMapNullValue);
        System.out.println("情況六:\n" + jsonUser);
    }
    /**
     * 用戶實(shí)體類
     */
    public static class User {  
        private Long id;
        private String username;
        private String password;
        private String mobile;
        private String country;
        private String city;
    //此處省略了相應(yīng)屬性的set、get方法
}

運(yùn)行結(jié)果:

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

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

結(jié)果說(shuō)明:

  • 情況一和情況二說(shuō)明了public static String toJSONString(Object object, SerializeFilter filter, SerializerFeature… features)這個(gè)方法將實(shí)體對(duì)象轉(zhuǎn)換成JSON字符串時(shí),默認(rèn)是忽略掉值為null的屬性,并且說(shuō)明了如何使得轉(zhuǎn)換后的JSON字符串包含值為null的屬性。

  • 情況三和情況四說(shuō)明了如何使用SerializeFilter來(lái)排除指定屬性,使得轉(zhuǎn)換后的JSON字符串中不包含這些屬性。

  • 情況五和情況六說(shuō)明了如何使用SerializeFilter來(lái)包含指定屬性,使得轉(zhuǎn)換后的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));
    }
}

輸出結(jié)果

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

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

關(guān)于“如何用JSONObject.toJSONString()包含或排除指定的屬性”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí),可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會(huì)為大家更新不同的知識(shí)點(diǎn)。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI