我正在開發中,我要解析的URL JSON format.Url一個Android應用程序解析JSON格式的Android應用程序的URL
http://search.yahooapis.com/NewsSearchService/V1/newsSearch?appid=YahooDemo&output=json
我已讓JSON格式對象經得起然後傳遞價值觀。有人曾經實施過它,如果有,他能幫助我嗎?
在此先感謝 圖莎爾
我正在開發中,我要解析的URL JSON format.Url一個Android應用程序解析JSON格式的Android應用程序的URL
http://search.yahooapis.com/NewsSearchService/V1/newsSearch?appid=YahooDemo&output=json
我已讓JSON格式對象經得起然後傳遞價值觀。有人曾經實施過它,如果有,他能幫助我嗎?
在此先感謝 圖莎爾
您可以使用GSON。看看這個article。你分析它是這樣的:
public void runJSONParser(){
try{
Log.i("MY INFO", "Json Parser started..");
Gson gson = new Gson();
Reader r = new InputStreamReader(getJSONData("http://search.twitter.com/trends.json"));
Log.i("MY INFO", r.toString());
TwitterTrends objs = gson.fromJson(r, TwitterTrends.class);
Log.i("MY INFO", ""+objs.getTrends().size());
for(TwitterTrend tr : objs.getTrends()){
Log.i("TRENDS", tr.getName() + " - " + tr.getUrl());
}
}catch(Exception ex){
ex.printStackTrace();
}
}
抓了 「錯誤」 的元素一樣的JSONObject,不JSONArray。
,,,,,現在我得到錯誤無法在此處加載頁面http錯誤的請求 – User
發佈一些代碼 –
我已經貼我的完整的代碼在我的答案,檢查和答覆..等待你的回覆 – User