首页 > 代码库 > json剥离

json剥离

 String json=get("http://www.weather.com.cn/data/cityinfo/101010100.html");                         JSONObject jsonObject2 =new JSONObject(json);                         str=jsonObject2.getString("weatherinfo");    //寻找weatherinfo下的json                         //textView.setText(str);                         //Log.v("zms", str);                                                    JSONObject jsonObject3 =new JSONObject(str);   //寻找weather下的json                         strs=jsonObject3.getString("weather");                         textView.setText(strs);                         Log.v("zms", strs); 

 

json剥离