2012年6月4日 星期一

Android 讀取JSON

使用方法如下

//將資料寫入JSONArray
JSONArray result = new JSONArray(json_data);
//取出陣列內所有物件
for(int i = 0;i < result.length(); i++) {
    //取出JSON物件
    JSONObject stock_data = result.getJSONObject(i);
    //取得物件內資料
    System.out.println("t:"+stock_data.getString("t"));
    System.out.println("l_cur:"+stock_data.getString("l_cur"));
    System.out.println("c:"+stock_data.getString("c"));
    System.out.println("cp:"+stock_data.getString("cp"));
}


參考資料:http://kie0723.blogspot.tw/2010/12/android-json.html






沒有留言:

張貼留言