GSON 反序列化键值到自定义对象

2022-09-02 13:02:57

我需要反序列化json,它是日期/长整型值的数组。下面是返回的 JSON 的示例:

[{"2011-04-30T00:00:00-07:00":100}, {"2011-04-29T00:00:00-07:00":200}]

使用GSON,我能够将其反序列化为 ,但希望能够将其转换为类似于:List<Map<Date,String>>List<MyCustomClass>

public class MyCustomClass() { 
    Date date;
    Long value;
}

我似乎找不到一种方法来指示GSON将JSON映射的键/值映射到我的自定义类中的日期/值字段。有没有办法做到这一点,或者地图列表是唯一的路线?


答案 1

您需要编写一个自定义反序列化程序。您还需要使用SimpleDateFormat可以实际解析的时区格式。两者都不匹配,这是RFC 822时区格式()或“通用时区”(或)的奇怪组合。或者,您可以坚持使用完全相同的时区格式,并使用JodaTime的DateTimeFormatzZ-07:00-0700Mountain Standard TimeMSTGMT-07:00

MyCustomClass.java

public class MyCustomClass
{
    Date date;
    Long value;

    public MyCustomClass (Date date, Long value)
    {
        this.date = date;
        this.value = value;
    }

    @Override
    public String toString()
    {
        return "{date: " + date + ", value: " + value + "}";
    }
}

MyCustomDeserializer.java

public class MyCustomDeserializer implements JsonDeserializer<MyCustomClass>
{
    private DateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssz");

    @Override
    public MyCustomClass deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext ctx) throws JsonParseException
    {
        JsonObject obj = json.getAsJsonObject();
        Entry<String, JsonElement> entry = obj.entrySet().iterator().next();
        if (entry == null) return null;
        Date date;
        try
        {
            date = df.parse(entry.getKey());
        }
        catch (ParseException e)
        {
            e.printStackTrace();
            date = null;
        }
        Long value = entry.getValue().getAsLong();
        return new MyCustomClass(date, value);
    }
}

GsonTest.java

public class GsonTest
{
    public static void main(String[] args)
    {
        // Note the time zone format tweak (removed the ':')
        String json = "[{\"2011-04-30T00:00:00-0700\":100}, {\"2011-04-29T00:00:00-0700\":200}]";

        Gson gson =
            new GsonBuilder()
            .registerTypeAdapter(MyCustomClass.class, new MyCustomDeserializer())
            .create();
        Type collectionType = new TypeToken<Collection<MyCustomClass>>(){}.getType();
        Collection<MyCustomClass> myCustomClasses = gson.fromJson(json, collectionType);
        System.out.println(myCustomClasses);
    }
}

上述所有代码都在Github上,请随时克隆(尽管您也可以获得其他问题的答案代码)。


答案 2

与Matts的答案非常相似,但使用Joda:

import java.lang.reflect.Type;

import org.joda.time.DateTime;
import org.joda.time.format.DateTimeFormat;
import org.joda.time.format.DateTimeFormatter;

import com.google.gson.JsonDeserializationContext;
import com.google.gson.JsonDeserializer;
import com.google.gson.JsonElement;
import com.google.gson.JsonParseException;

public class DateTimeSerializer implements JsonDeserializer<DateTime> {

    private DateTimeFormatter parser = DateTimeFormat.forPattern("YYYY-MM-dd'T'HH:mm:ss.SS'Z'").withZoneUTC();

    @Override
    public DateTime deserialize(JsonElement json, Type typeOfT,
            JsonDeserializationContext ctx) throws JsonParseException {
        String dateTimeString = ctx.eserialize(json, String.class);
        return parser.parseDateTime(dateTimeString);
    }

}