昨天看到一个百度的天气API
介绍:http://apistore.baidu.com/apiworks/servicedetail/478.html
接口:http://apis.baidu.com/heweather/weather/free
看到返回的数据类型十JSON,由于没接触过JSON所以就做了这个小东西试试。
分析json用org.json这包。写了个递归来将最内层的键值对放到Map中,Map的Key值为该节点的所有父节点的名称的组合。
static Mapall=new HashMap ();
public static void toMap(String exName,String jsonStr){ try { JSONObject jO=new JSONObject(jsonStr); Iterator iterator=jO.keys(); while(iterator.hasNext()){ String key= (String) iterator.next(); if(jO.get(key) instanceof JSONObject){ //System.out.println(((JSONObject) jO.get(key)).length()); toMap(exName + "_" + key, jO.get(key).toString()); }else if(jO.get(key) instanceof JSONArray){ JSONArray jA=(JSONArray) jO.get(key); for(int i=0;i这个程序的精华就是上面的代码。其他的就不贴出来了。
完整代码
git@osc: