Skip to content

Instantly share code, notes, and snippets.

@aforcier
Last active March 13, 2017 15:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aforcier/a04869e65f0e2792b28a7a6c7824e1fd to your computer and use it in GitHub Desktop.
Save aforcier/a04869e65f0e2792b28a7a6c7824e1fd to your computer and use it in GitHub Desktop.
Gson: Safe long deserialization
public class JsonLongDeserializer implements JsonDeserializer<Long> {
@Override
public Long deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) {
try {
return json.getAsLong();
} catch (NumberFormatException e) {
return -1L;
}
}
}
// To register:
new GsonBuilder().registerTypeAdapter(long.class, new JsonLongDeserializer()).create();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment