// Creates the json object which will manage the information received
GsonBuilder builder = new GsonBuilder();
// Register an adapter to manage the date types as long values
builder.registerTypeAdapter(Date.class, new JsonDeserializer<Date>() {
public Date deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException {
return new Date(json.getAsJsonPrimitive().getAsLong());
}
});
Gson gson = builder.create();
import com.google.gson.Gson;
import com.google.gson.JsonSyntaxException;
import com.google.gson.TypeAdapter;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonToken;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
import java.util.TimeZone;
public final class ImprovedDateTypeAdapter extends TypeAdapter<Date> {
public static final TypeAdapterFactory FACTORY = new TypeAdapterFactory() {
public <T> TypeAdapter<T> create(Gson gson, TypeToken<T> typeToken) {
@SuppressWarnings("unchecked")
TypeAdapter<T> typeAdapter = (TypeAdapter<T>) ((typeToken.getRawType() == Date.class) ? new ImprovedDateTypeAdapter()
: null);
return typeAdapter;
}
};
private final DateFormat enUsFormat;
private final DateFormat localFormat;
private final DateFormat iso8601Format;
public ImprovedDateTypeAdapter() {
this.enUsFormat = DateFormat.getDateTimeInstance(2, 2, Locale.US);
this.localFormat = DateFormat.getDateTimeInstance(2, 2);
this.iso8601Format = buildIso8601Format();
}
private static DateFormat buildIso8601Format() {
DateFormat iso8601Format = new SimpleDateFormat(
"yyyy-MM-dd'T'HH:mm:ss'Z'", Locale.US);
iso8601Format.setTimeZone(TimeZone.getTimeZone("UTC"));
return iso8601Format;
}
public Date read(JsonReader in) throws IOException {
if (in.peek() == JsonToken.NULL) {
in.nextNull();
return null;
}
return deserializeToDate(in.nextString());
}
private synchronized Date deserializeToDate(String json) {
try {
return new Date(Long.parseLong(json));
} catch (Exception e) {
try {
return this.localFormat.parse(json);
} catch (ParseException e1) {
try {
return this.enUsFormat.parse(json);
} catch (ParseException e2) {
try {
return this.iso8601Format.parse(json);
} catch (ParseException e3) {
throw new JsonSyntaxException(json, e3);
}
}
}
}
}
public synchronized void write(JsonWriter out, Date value)
throws IOException {
if (value == null) {
out.nullValue();
return;
}
String dateFormatAsString = this.enUsFormat.format(value);
out.value(dateFormatAsString);
}
}
使用方法:
// Creates the json object which will manage the information received
GsonBuilder builder = new GsonBuilder();
// Register an adapter to manage the date types as long values
builder.registerTypeAdapter(Date.class, new ImprovedDateTypeAdapter());
Gson gson = builder.create();
GsonBuilder gsonBuilder = new GsonBuilder();
// Adapter to convert long values to date types
gsonBuilder.registerTypeAdapter(Date.class, new JsonDeserializer<Date>() {
public Date deserialize(JsonElement jsonElement, Type typeOfObj, JsonDeserializationContext context)
throws JsonParseException {
//Converting milliseconds to current Date. (instead of 1970)
return new Date(jsonElement.getAsLong() * 1000);
}
});
Gson gson = gsonBuilder.setPrettyPrinting().create();
public class CustomGsonHttpMessageConverter extends GsonHttpMessageConverter {
public CustomGsonHttpMessageConverter() {
// Creates the json object which will manage the information received
GsonBuilder builder = new GsonBuilder();
// Register an adapter to manage the date types as long values
builder.registerTypeAdapter(Date.class, new JsonDeserializer<Date>() {
public Date deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException {
return new Date(json.getAsJsonPrimitive().getAsLong());
}
});
setGson(builder.create());
}
}
7条答案
按热度按时间1hdlvixo1#
阿方索评论道:
最后我得到了解决办法:
pgpifvop2#
我编写了一个基于GSON默认DateTypeAdapter的ImprovedDateTypeAdapter,它支持默认日期格式和时间戳(长)格式。
使用方法:
ygya80vv3#
z8dt9xmd4#
在处理JSON时,使用以下代码段将毫秒转换为日期。
bqf10yzr5#
当我尝试使用Android annotations库的Rest client反序列化DateTime字段时,遇到了同样的问题。
并在其余客户端中定义它
我希望它会有帮助
ve7v8dk26#
由于某种原因,我在Intellij中使用匿名类编译了上面的代码;一个lambda对我很有效:
avwztpqn7#