0

我正在尝试在一个小型 Java 应用程序中使用 gson 进行 json 解析。我有一个来自 .Net 业务层的 json 字符串,字段为“1999-08-24T00:00:00”。在像用户模型这样的模型中,我有 java.time.InstantbirthDay 字段。使用 gson,我试图将 json 字符串添加到我的用户模型中。我还有一个 InstantDeserializer 类。但是当我尝试转换它时,我收到一条消息,如 java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)..

在即时类型之前,我使用的是 Date 类。我写了 DateDeserializer 类,但我知道 Date 类已被弃用。我用谷歌搜索了很多页面。我尝试了很多东西,但我不知道如何弄清楚。所以我只想问我哪里出错了。我该怎么办?如何使我的代码更清晰或最好的方法是什么?如果你能给出一些代码示例,我会更好地理解。

任何建议表示赞赏..

这是我的代码..

JSON字符串:

{
   "Value":{
      "ID":"123",
      "NAME":"John",
      "SURNAME":"Concept",
      "BIRTHDAY":"1999-08-24T00:00:00",
      "PAYMENTINFORMATION":[
         {
            "ID":"1",
            "PAYMENTINFO":"RECIEVED"
         }
      ]
   },
   "Succued": true
}

用户模型类

package Models;

import java.lang.reflect.Array;
import java.util.ArrayList;
import java.util.List;
import java.time.LocalDateTime;
import java.util.Date;
import com.google.gson.annotations.SerializedName;
import java.time.Instant;

public class UserModel {

    private long id;
    private String name;
    private String surname;
    private Instant birthday;
    private List<PaymentModel> paymentInformation;

    //GETTER SETTER

    public UserModel() {
        paymentInformation= new ArrayList<>();
    }
}

InstantDeserializer 类

package Util;

import com.google.gson.JsonDeserializationContext;
import com.google.gson.JsonDeserializer;
import com.google.gson.JsonElement;
import com.google.gson.JsonParseException;
import java.lang.reflect.Type;
import java.time.Instant;
import java.time.LocalDateTime;
import java.time.ZoneId;

public class InstantDeSerializer implements JsonDeserializer<Instant> {

    @Override
    public Instant deserialize(JsonElement jelement, Type type, JsonDeserializationContext jdc) throws JsonParseException {
        Instant insObj= Instant.ofEpochMilli(jelement.getAsJsonPrimitive().getAsLong());
        return insObj;
    }

}

和主类

public class JSONTryMe {
    public static void main(String[] args) throws Exception {

        JSONObject responseJSON = new JSONObject(jsonString);
        if (responseJSON.isNull("Value")) {
            return;
        }

        GsonBuilder build = new GsonBuilder();
        build.registerTypeAdapter(Instant.class, new InstantDeSerializer());
        Gson gObj = build.create();
        UserModel user = gObj.fromJson(responseJSON.getJSONObject("Value").toString(), UserModel.class);

        System.out.println(user.getBirthday().toString());    
    }
}

Ant的错误stackTrace是

java.lang.NumberFormatException: For input string: "1999-08-24T00:00:00"
    at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
    at java.lang.Long.parseLong(Long.java:589)
    at java.lang.Long.parseLong(Long.java:631)
    at com.google.gson.JsonPrimitive.getAsLong(JsonPrimitive.java:206)
    at Util.InstantDeSerializer.deserialize(InstantDeSerializer.java:25)
    at Util.InstantDeSerializer.deserialize(InstantDeSerializer.java:21)
    at com.google.gson.internal.bind.TreeTypeAdapter.read(TreeTypeAdapter.java:69)
    at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$1.read(ReflectiveTypeAdapterFactory.java:131)
    at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.read(ReflectiveTypeAdapterFactory.java:222)
    at com.google.gson.Gson.fromJson(Gson.java:932)
    at com.google.gson.Gson.fromJson(Gson.java:897)
    at com.google.gson.Gson.fromJson(Gson.java:846)
    at com.google.gson.Gson.fromJson(Gson.java:817)
    at Source.JSONTryMe.main(JSONTryMe.java:85)
4

1 回答 1

1

以下是几个概念上的缺陷:

  • 出生日期应该使用LocalDate
  • 您的 JSON 输入提供 ISO 日期时间,但您的反序列化器尝试读取自纪元以来的毫秒数。用于LocalDate#parse()
于 2020-03-19T21:46:05.437 回答