https://api.zomato.com/v1/restaurant.json/315?apikey=4f4b91f51207b8175170604f4b91f512這是我們要分析,以便我們能夠打印ID和姓名我
Web服務
我已經嘗試了很多,但無法解析和檢索數據我新的android。 PLZ給我
代碼如何,我會解析讀音字能讀這個Web服務,但數據不來格式化,因此不
能夠解析。
https://api.zomato.com/v1/restaurant.json/315?apikey=4f4b91f51207b8175170604f4b91f512這是我們要分析,以便我們能夠打印ID和姓名我
Web服務
我已經嘗試了很多,但無法解析和檢索數據我新的android。 PLZ給我
代碼如何,我會解析讀音字能讀這個Web服務,但數據不來格式化,因此不
能夠解析。
您可以從這些鏈接中學習。這些鏈接中顯示的非常簡單的示例。
http://www.technotalkative.com/android-json-parsing/
http://www.androidcompetencycenter.com/2009/10/json-parsing-in-android/
希望這會幫助你。
謝謝...
這很簡單。你有一個JSONString。你需要這樣做。
首先製作一個像這樣的JSONObject。
JSONObject json = new JSONOBject("String you want"); // I mean the string you get from server
然後給鑰匙的你想要的。
json.get("id");
等
更多看到之前在這裏發帖here
你應該做R&d:[**的Android JSON解析**](http://stackoverflow.com/搜索?q = Android + JSON +解析) – 2012-04-02 12:11:46
這是用json解析的示例代碼的最佳tutuorial。 http://www.androidhive.info/2012/01/android-json-parsing-tutorial/ – wolverine 2012-04-02 12:13:12
請按照教程 - [http://www.vogella.de/articles/AndroidJSON/article.html](http: //www.vogella.de/articles/AndroidJSON/article.html)本教程解釋瞭如何檢索數據和解析數據。 – Shaiful 2012-04-02 12:09:21