伊谢尔伦2017-04-17 16:36:22
直接用反射檢測json是否有該字段不就行了。
class A {
String a;
String b;
List<B> list;
}
class B{...}
private static void checkJson(JSONObject json, Class<?> clazz) {
Field[] fields = clazz.getDeclaredFields();
for (Field field : fields) {
if (!json.has(field.getName())) {
throw new JsonParseException();
}
// 遍历数组
Type type = field.getGenericType();
if (type instanceof ParameterizedType) {
Type[] types = ((ParameterizedType) type).getActualTypeArguments();
Type t = types[0];
JSONArray array = json.getJSONArray(field.getName());
for (int i = 0; i < array.length(); i++) {
Object childJSON = array.get(i);
if (childJSON instanceof JSONObject) {
checkJson((JSONObject) childJSON, (Class) t);
}
}
}
}
}
public static void main(String[] args){
A a = new A();
...
String json = new Gson().toJson(a);
checkJson(new JSONObject(json), A.class);
}
迷茫2017-04-17 16:36:22
這個只能寫一個自訂的Deserializer, 可以參考stackoverflow,有人問過同樣的問題。
http://stackoverflow.com/questions/3163193/strict-json-parsing-with-googles-gson