80,490
社区成员
发帖
与我相关
我的任务
分享
try {
JSONObject jsonObject = new JSONObject(response.get(2).getData());
int jsonStr = jsonObject.length();
LogUtils.d("json", jsonStr+"");
for (int i = 0; i < jsonStr; i++) {
LogUtils.d("json", jsonObject.getString("content"));
}
} catch (JSONException e) {
LogUtils.d("json", "失败");
e.printStackTrace();
}