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); 

 

posted @ 2015-01-16 14:14  fleam  阅读(175)  评论(0编辑  收藏  举报