老师, 解析Json数据的时候, 可以使用jsonobject而不使用jsonarry吗? 我在网上查了下。
Log.d("syx", jsonstring);
JSONObject jsonboject;
NewsBean newbean;
try {
jsonboject=new JSONObject(jsonstring);
JSONArray jsonArray=jsonboject.getJSONArray("data");
for (int i = 0; i < jsonArray.length(); i++) {
jsonboject=jsonArray.getJSONObject(i);
newbean=new NewsBean();
newbean.newsIconURL=jsonboject.getString("picSmall");
newbean.newsTitle=jsonboject.getString("name");
newbean.newsContent=jsonboject.getString("description");