Gson忽略值为null的映射条目

Gson gson = new Gson(); Map<String,Object> map = new HashMap<String, Object>(); map.put("a", 1); map.put("b", null); System.out.println(gson.toJson(map)); //prints {"a":1} 

我如何获得它包括所有条目?

请参阅http://sites.google.com/site/gson/gson-user-guide#TOC-Null-Object-Support

 Gson gson = new GsonBuilder().serializeNulls().create();