FastJson、Jackson、Gson進行Java對象轉換Json的細節處理

轉 https://blog.csdn.net/moneyshi/article/details/51830329java

Java對象轉換Json的細節處理

前言

Java對象在轉json的時候,若是對象裏面有屬性值爲null的話,那麼在json序列化的時候要不要序列出來呢?對比如下json轉換方式

1、fastJson

一、fastJson在轉換java對象爲json的時候,默認是不序列化null值對應的key的

也就是說當對象裏面的屬性爲空的時候,在轉換成json時,不序列化那些爲null值的屬性
 
具體案例以下:
AutoPartsSearchRequest 有如下屬性:
 
  1. public static void main(String[] args) {
  2. AutoPartsSearchRequest request = new AutoPartsSearchRequest();
  3. request.setKeywords( "123");
  4. request.setSortingField( "234242");
  5. String str = JSONObject.toJSONString(request); //fastjson默認轉換是不序列化null值對應的key的
  6. System.out.println(str);
  7. }

輸出結果:{"keywords":"123","sortingField":"234242"}  , 沒有序列化那些值爲null的屬性
 

二、可是若是想把null對應的key序列化出來呢? 

那就要仔細看看fastjson轉換java對象爲json的時候的入參了:也就是這個方法:
 
JSONObject.toJSONString(Object object, SerializerFeature... features)

Fastjson的SerializerFeature序列化屬性:


 
  1. QuoteFieldNames———-輸出key時是否使用雙引號,默認爲 true
  2. WriteMapNullValue——–是否輸出值爲 null的字段,默認爲false
  3. WriteNullNumberAsZero—-數值字段若是爲 null,輸出爲0,而非null
  4. WriteNullListAsEmpty—–List字段若是爲 null,輸出爲[],而非null
  5. WriteNullStringAsEmpty—字符類型字段若是爲 null,輸出爲」「,而非null
  6. WriteNullBooleanAsFalse– Boolean字段若是爲null,輸出爲false,而非null
 
結合上面,SerializerFeature... features是個數組,那麼咱們能夠傳入咱們想要的參數,好比想序列化null,案例以下:
  1. public static void main(String[] args) {
  2. AutoPartsSearchRequest request = new AutoPartsSearchRequest();
  3. request.setKeywords( "123");
  4. request.setSortingField( "234242");
  5. String str = JSONObject.toJSONString(request, SerializerFeature.WriteMapNullValue);
  6. System.out.println(str);
  7. }

輸出結果以下:
 

 

三、想字符類型字段若是爲null,轉換輸出爲」「,而非null ,須要多加一個參數:WriteNullStringAsEmpty, 案例以下:

 
  1. public static void main(String[] args) {
  2. AutoPartsSearchRequest request = new AutoPartsSearchRequest();
  3. request.setKeywords( "123");
  4. request.setSortingField( "234242");
  5. String str = JSONObject.toJSONString(request, SerializerFeature.WriteMapNullValue,
  6. SerializerFeature.WriteNullStringAsEmpty);
  7. System.out.println(str);
  8. }

輸出結果以下:
 
 
 
 
 
 

2、Jackson

 

一、jackson默認是序列化null對應的key的,也就是說無論你對象屬性有沒有值,在轉換json的時候都會被序列化出來

  1. public static void main(String[] args) throws JsonGenerationException, JsonMappingException, IOException {
  2. AutoPartsSearchRequest request = new AutoPartsSearchRequest();
  3. request.setKeywords( "123");
  4. request.setSortingField( "234242");
  5. ObjectMapper mapper = new ObjectMapper();
  6. String str = mapper.writeValueAsString(request);
  7. System.out.println(str);
  8. //輸出結果(此處就不格式化了):{"sortingField":"234242","partsClassifyId":null,"partsSubClassifyId":null,"sortingDirection":null:......
  9. }

 

二、同理,想要不序列化null也是能夠的,具體以下:

  1. 1.實體上
  2.  
  3. @JsonInclude(Include.NON_NULL)
  4.  
  5. //將該標記放在屬性上,若是該屬性爲NULL則不參與序列化
  6. //若是放在類上邊,那對這個類的所有屬性起做用
  7. //Include.Include.ALWAYS 默認
  8. //Include.NON_DEFAULT 屬性爲默認值不序列化
  9. //Include.NON_EMPTY 屬性爲 空(「」) 或者爲 NULL 都不序列化
  10. //Include.NON_NULL 屬性爲NULL 不序列化
  11.  
  12.  
  13. 2.代碼上
  14. ObjectMapper mapper = new ObjectMapper();
  15.  
  16. mapper.setSerializationInclusion(Include.NON_NULL);
  17.  
  18. //經過該方法對mapper對象進行設置,全部序列化的對象都將按改規則進行系列化
  19. //Include.Include.ALWAYS 默認
  20. //Include.NON_DEFAULT 屬性爲默認值不序列化
  21. //Include.NON_EMPTY 屬性爲 空(「」) 或者爲 NULL 都不序列化
  22. //Include.NON_NULL 屬性爲NULL 不序列化


注意:只對VO起做用,Map List不起做用,另外jackson還能過濾掉你設置的屬性,具體的就各位本身去研究源碼了json

或者參照: jackson詳解

 
 

3、Gson


一、gson和fastjson同樣,默認是不序列化null值對應的key的,具體案例以下:

 
  1. public static void main(String[] args) throws JsonGenerationException, JsonMappingException, IOException {
  2. AutoPartsSearchRequest request = new AutoPartsSearchRequest();
  3. request.setKeywords( "123");
  4. request.setSortingField( "234242");
  5. Gson g = new GsonBuilder().create();
  6. String str = g.toJson(request);
  7. System.out.println(str);
  8. //輸出結果:{"sortingField":"234242","keywords":"123"}
  9. }


二、如果想序列化null值對應的key,只須要將以上建立代碼改爲如下代碼就行:

Gson g = new GsonBuilder().serializeNulls().create();
 
案例就不寫了

 

三、如果想轉行null爲空字符串"",則須要手動處理了

 
相關文章
相關標籤/搜索