android的url请求返回json数据
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android的url请求返回json数据相关的知识,希望对你有一定的参考价值。
url请求返回的是json数据,在浏览器里可以显示的。惊悚格式是这样的
[
"aqi":59,"area":"宁波","co":0.94,"co_24h":0.657,
"aqi":54,"area":"宁波","co":0.697,"co_24h":0.666,
"aqi":49,"area":"宁波","co":0.858,"co_24h":0.765,
"aqi":64,"area":"宁波","co":0.579,"co_24h":0.467
]
要做的是请求url,并解析返回的数据。求高手给出代码,参考的也行,我有300多财富,要是好用的话,身家都给你了。我自己看了挺久的,这个流程不怎么熟悉。网上代码是有,但是没有讲原理的,所以不怎么会用。代码里的url地址随便用一个代替吧,求高手,各种求啊
private int aqi;
private String area;
private String co;
private String co_24h;
public int getAqi()
return aqi;
public void setAqi(int aqi)
this.aqi = aqi;
public String getArea()
return area;
public void setArea(String area)
this.area = area;
public String getCo()
return co;
public void setCo(String co)
this.co = co;
public String getCo_24h()
return co_24h;
public void setCo_24h(String co_24h)
this.co_24h = co_24h;
Gson gson = new Gson();
Template template = gson.fromJson( new String() , Template.class );//new String();通过url获取到的json串
这种只能解析单个的,不能解析这种列表。拆分出来,单独解析。
追问只有一半啊
参考技术B HttpClient client = new HttpClient();PostMethod post = new PostMethod("your url");
//准备参数,可以是多个
NameValuePair simcard = new NameValuePair("key","value");
post.setRequestBody(new NameValuePair[]simcard);
//执行请求
client.executeMethod(method);
//获取返回值
String response = new String(method.getResponseBodyAsString().getBytes("iso-8859-1"));
//把json字符串转换为对象,有很多方法
SONObject result = new JSONObject(response);追问
HttpClient client = new HttpClient(); error:不能实例化类型 HttpClient
PostMethod,method 这个找不到
还不能用
是因为用的httpclient的jar包版本不一致,不行就用
HttpClient client = new DefaultHttpClient();
不行的话,用下面的代码
HttpPost request = new HttpPost("your url");
// 先封装一个 JSON 对象
JSONObject param = new JSONObject();
param.put("name", "rarnu");
param.put("password", "123456");
// 绑定到请求 Entry
StringEntity se = new StringEntity(param.toString());
request.setEntity(se);
// 发送请求
HttpResponse httpResponse = new DefaultHttpClient().execute(request);
if (httpResponse.getStatusLine().getStatusCode() == HttpStatus.SC_OK)
// 得到应答的字符串,这也是一个 JSON 格式保存的数据
String response= EntityUtils.toString(httpResponse.getEntity());
// 生成 JSON 对象
JSONObject result = new JSONObject(response);
私信你了,能教教我不
本回答被提问者采纳以上是关于android的url请求返回json数据的主要内容,如果未能解决你的问题,请参考以下文章
求一个c#的 post请求 json 并且接收返回json数据的一个demo。