如何使用java进行json数据解析?

如何使用java进行json数据解析?有哪些方法?

回答:

import org.json.*;

JSONObject obj = new JSONObject(" .... ");

String pageName = obj.getJSONObject("pageInfo").getString("pageName");

JSONArray arr = obj.getJSONArray("posts");

for (int i = 0; i < arr.length(); i++)

{

String post_id = arr.getJSONObject(i).getString("post_id");

......

}

//from object to JSON 

Gson gson = new Gson();

gson.toJson(yourObject);

// from JSON to object

yourObject o = gson.fromJson(JSONString,yourObject.class);

以上是 如何使用java进行json数据解析? 的全部内容, 来源链接: utcz.com/qa/416140.html

回到顶部