有没有使用 GSON 将 org.json.JSONObject 转换为 POJO 模型的有效方法?(此刻你想这样做
Gson g=new Gson();
g.fromJson(json.toString(), PersonModel.class);
json is JSONObject
)。我正在使用 volley 作为响应,我得到 JSONObject 的实例,我可以像在http://www.kpbird.com/2013/05/volley-easy-fast-networking-for-android.html上一样解析,但我有复杂的结构在嵌套列表等模型中,我想避免从 json 中手动提取数据。