Как Gson конвертировать JSON в POJO с именами пользовательских полей
Я недавно начал использовать GSON и столкнулся с проблемой десериализации этого json. Проблема в элементе json, который содержит пробелы в именах полей.
{
longDescriptionNonHTML: {
What it is:: " An oil-free, color-tinted moisturizer."
What it does:: " This lightweight foundation can be reapplied as necessary and offers moisturizing, oil-control coverage for sensitive or acne prone skin."
}
{
SKUType: "restricted"
brandName: "Laura Mercier"
brandId: 5809
skuID: "1228139"
availableInStore: 0
topSellerRank: 8297
productName: "Tinted Moisturizer - Oil Free"
shade_description: "Porcelain"
shortDescription: "What it is: An oil-free, color-tinted moisturizer.What it does: This lightweight foundation can be reapplied as necessary and offers moisturizing, oil-control coverage for sensitive or acne prone skin."
size: "1.7 oz"
listPrice: 0
salePrice: 0
image: "http://www.sephora.com/productimages/sku/s1228139-main-hero.jpg"
rating_product: 4.3
online_store: "http://www.sephora.com/tinted-moisturizer-oil-free-P310929?skuId=1228139&lang=en"
imageBrand: "http://www.sephora.com/contentimages/brands/lauramercier/5809_logo_279.png"
productId: "P310929"
formulation: "Liquid"
spf: ""
coverage: "Sheer, Medium"
finish: "Matte, Natural"
ingredients: "Vitamin C"
skintype: "Combination, Normal, Oily"
longDescription: "<b>What it is:</b><br> An oil-free, color-tinted moisturizer.<br><br><b>What it does:</b><br> This lightweight foundation can be reapplied as necessary and offers moisturizing, oil-control coverage for sensitive or acne prone skin."
longDescriptionNonHTML: {
What it is:: " An oil-free, color-tinted moisturizer."
What it does:: " This lightweight foundation can be reapplied as necessary and offers moisturizing, oil-control coverage for sensitive or acne prone skin."
}-
skintone: "2Y03"
longIngredientsDesc: ""
language: "en"
isPrimarySkintone: 1
isDefaultSku: 0
storeonly: 0
}
Я написал ниже POJO
открытый класс LongDescriptionNonHTML {
@SerializedName("What it is:")
private String whatItIs;
@SerializedName("What it does:")
private String whatItDoes;
public LongDescriptionNonHTML(String a,String b){
whatItDoes=a;
whatItDoes=b;
}
public String getWhatItIs() {
return whatItIs;
}
public void setWhatItIs(String whatItIs) {
this.whatItIs = whatItIs;
}
public String getWhatItDoes() {
return whatItDoes;
}
public void setWhatItDoes(String whatItDoes) {
this.whatItDoes = whatItDoes;
}
}
Также для десериализации я написал ниже код
Gson gson = new GsonBuilder().setPrettyPrinting().create();
JsonReader reader = new JsonReader(new FileReader(fileName));
LongDescriptionNonHTML obj=gson.fromJson(reader, LongDescriptionNonHTML.class);
System.out.println(obj.getWhatItDoes());
Но это печать нулевого значения.
3 ответа
Это может быть полезно для вас конвертировать JSON в класс POJO.
public static <T> T convertJSON2POJOClass(String json, Class<T> type)
{
GsonBuilder gsonBuilder = new GsonBuilder();
gsonBuilder.serializeNulls();
try{
return (T) gson.fromJson(json, type);
} catch (Exception expJSONToClassConvertor) {
baseDAO.getInstance().logAnError("common", baseDAO.getInstance().stackTraceToString(expJSONToClassConvertor));
return null;
}
Если вы опубликовали настоящий JSON и весь ваш настоящий код POJO, то у вас есть несоответствие между вашей структурой JSON и POJO:
- Вы спрашиваете
Gson
производитьLongDescriptionNonHTML
из вашего JSON. - Но ваш JSON не только это - это на самом деле какой-то другой объект, который содержит
LongDescriptionNonHTML
в качестве значения для ключаlongDescriptionNonHTML
,
Я решил это
открытый класс LongDescriptionNonHTML {
//@SerializedName("What it is:")
private String whatItIs;
//@SerializedName("What it does:")
private String whatItDoes;
public LongDescriptionNonHTML(String a,String b){
whatItDoes=a;
whatItDoes=b;
}
public String getWhatItIs() {
return whatItIs;
}
public void setWhatItIs(String whatItIs) {
this.whatItIs = whatItIs;
}
public String getWhatItDoes() {
return whatItDoes;
}
public void setWhatItDoes(String whatItDoes) {
this.whatItDoes = whatItDoes;
}
Затем создал десериализатор
открытый класс FooDeserializer реализует JsonDeserializer {
@Override
public LongDescriptionNonHTML deserialize(JsonElement json, Type typeOfT,
JsonDeserializationContext context)
throws JsonParseException {
JsonObject jo = (JsonObject)json;
String a =jo.get("What it is:").getAsString();
String b =jo.get("What it does:").getAsString();
return new LongDescriptionNonHTML(a,b);
}
}
и затем, наконец, протестировал публичный класс jsonTest {
@Test
public void testJson() throws FileNotFoundException{
String fileName="/Users/User/Documents/workspace/simulator/book.json";
Gson gson = new GsonBuilder().setPrettyPrinting().registerTypeAdapter(LongDescriptionNonHTML.class, new FooDeserializer()).create();
JsonReader reader = new JsonReader(new FileReader(fileName));
LongDescriptionNonHTML obj=gson.fromJson(reader, LongDescriptionNonHTML.class);
System.out.println(obj.getWhatItDoes());
}
}