标签:des blog http os ar sp 数据 div 2014
JSONObject dataJson=new JSONObject(cpUserInfo);
String vivoorder=dataJson.getString("vivoOrder");
String vivoSig=dataJson.getString("vivoSignature");
String uid=dataJson.getString("uid");
百度:
json格式如下:{"response":{"data":[{"address":"南京市游乐园","province":"江苏","district":"玄武区","city":"南京"}]},"status":"ok"}
希望得到结果是: 江苏 南京 玄武区 南京市游乐园
JSONObject dataJson=new JSONObject("你的Json数据“);String province=info.getString("province");
JSONObject response=dataJson.getJSONObject("response");
JSONArray data=response.getJSONArray("data");
JSONObject info=data.getJSONObject(0);
标签:des blog http os ar sp 数据 div 2014
原文地址:http://www.cnblogs.com/songjingjiu/p/4026864.html