在 android 中检索从 GOOGLE FINANCE API URL 返回的 JSON 数据
Retrieve JSON data returned from GOOGLE FINANCE API URL in android
我正在使用以下URL 获取任何公司的报价信息。
http://finance.google.com/finance/info?client=ig&q=bom:ranbaxy
(这里ranbaxy是公司)
什么网站或者urlreturns下面给出。
[ {
"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 值中未给出对象名或数组名。我无法从此 url.
检索数据
我只想在 TextView 中显示每个数据。我在获取值的 class 中扩展了 AsyncTask。
需要解决方案。提前致谢。
这看起来像一个 json 数组。使用
JSONArray jsar=new JSONArray(result);
然后用for循环到parse.Also,看看this
希望对您有所帮助
我正在使用以下URL 获取任何公司的报价信息。 http://finance.google.com/finance/info?client=ig&q=bom:ranbaxy
(这里ranbaxy是公司)
什么网站或者urlreturns下面给出。
[ {
"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 值中未给出对象名或数组名。我无法从此 url.
检索数据我只想在 TextView 中显示每个数据。我在获取值的 class 中扩展了 AsyncTask。
需要解决方案。提前致谢。
这看起来像一个 json 数组。使用
JSONArray jsar=new JSONArray(result);
然后用for循环到parse.Also,看看this
希望对您有所帮助