json 到即时,字段使用 GSON "yyyy-MM-ddThh:mm:ss",但获取 java.lang.NumberFormatException:对于输入字符串:"1999-08-24T00:



我正在一个小型java应用程序中尝试使用gson进行json解析。我有一个json字符串,它来自.Net业务层,有一个字段为"1999-08-24T00:00:00"。在类似User模型的模型中,我有java.time.Instant birthDay字段。使用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
}

UserModel类

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错误堆栈跟踪是

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)

以下是几个概念缺陷:

  • 出生日期应使用LocalDate
  • JSON输入提供了ISO日期时间,但反序列化程序尝试读取epoch后的毫秒数。为此使用LocalDate#parse()

相关内容

  • 没有找到相关文章

最新更新