使用Gson的Java反射和递归JSON反序列化程序
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Gson的Java反射和递归JSON反序列化程序相关的知识,希望对你有一定的参考价值。
Change the generic class to whatever class you wish. JSON arrays, types etc, are not handled, you should do that. Purpose of this snippet is to deserialize only needed JSON keys with respect to the class members of your class.
import java.lang.reflect.Field; import java.lang.reflect.Type; import java.util.Iterator; import java.util.Map.Entry; import com.google.gson.JsonDeserializationContext; import com.google.gson.JsonElement; import com.google.gson.JsonObject; import com.google.gson.JsonParseException; public class PackagingDeserializer<PackagingResponse> implements com.google.gson.JsonDeserializer<PackagingResponse>{ @Override public PackagingResponse deserialize(JsonElement arg0, Type arg1, JsonDeserializationContext arg2) throws JsonParseException { Class klass = ((Class)arg1); PackagingResponse r = null; try { r = (PackagingResponse)klass.newInstance(); // TODO Auto-generated catch block e3.printStackTrace(); // TODO Auto-generated catch block e3.printStackTrace(); } JsonObject o = arg0.getAsJsonObject(); parse(o, r); return r; } private void parse(JsonObject o, PackagingResponse r){ while(i.hasNext()){ JsonElement el = e.getValue(); if(el.isJsonObject()) parse(el.getAsJsonObject(), r); f.setAccessible(true); if(f.getName().equals(e.getKey())){ try { f.set(r,el.getAsString()); // TODO Auto-generated catch block e1.printStackTrace(); // TODO Auto-generated catch block e1.printStackTrace(); } } } } } }
以上是关于使用Gson的Java反射和递归JSON反序列化程序的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 GSON 或 Java 中的其他 JSON 库反序列化列表?