检索从android中的GOOGLE FINANCE API URL返回的JSON数据

时间:2015-09-28 14:31:31

标签: json android-json stockquotes google-finance google-finance-api

我使用以下网址获取任何公司的报价信息。 http://finance.google.com/finance/info?client=ig&q=bom:ranbaxy

(这里是ranbaxy公司)。

下面给出了哪些网站或网址返回。

[ {
"id": "672832" ,
"t" : "500359" ,
"e" : "BOM" ,
"l" : "859.90" ,
"l_fix" : "859.90" ,
"l_cur" : "Rs.859.90" ,
"s": "0" ,
"ltt":"3:50PM GMT+5:30" ,
"lt" : "Apr 1, 3:50PM GMT+5:30" ,
"lt_dts" : "2015-04-01T15:50:23Z" ,
"c" : "" ,
"c_fix" : "" ,
"cp" : "" ,
"cp_fix" : "" ,
"ccol" : "" ,
"pcls_fix" : "859.9" 
} ]

在以下返回的json值中没有给出objectname或array name。我无法从此网址中检索数据。

我只想在TextView中显示每个数据。我已经在我获得值的类中扩展了AsyncTask。

需要解决方案。在此先感谢。

1 个答案:

答案 0 :(得分:0)

这看起来像一个json数组。使用

JSONArray jsar=new JSONArray(result);

然后使用for循环进行解析。另外,请查看this

希望这有帮助