android 怎么接受网址上的json数组,并解析

求个源码... 求个源码 展开
 我来答
匿名用户
推荐于2016-02-02
展开全部
传入网址路径,获取字符串
public static String getHtmlContent(String url) {
String htmlCode = null;
StringBuffer resultBuffer = new StringBuffer();

HttpGet request = new HttpGet(url);
HttpClient httpClient = new DefaultHttpClient();
try {
HttpResponse response = httpClient.execute(request);
if(response.getStatusLine().getStatusCode() == 200)
{
HttpEntity entity = response.getEntity();
BufferedReader io = new BufferedReader(new InputStreamReader(entity.getContent(),"UTF-8"));
String strResult;
while((strResult = io.readLine())!=null){
resultBuffer.append(strResult);
}
htmlCode = new String(resultBuffer);
io.close();
}
} catch (IllegalArgumentException e) {
e.printStackTrace();
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return htmlCode;
}
解析json字符串
private String parseJson(String strResult) {
String temp = null;
try {
JSONObject jsonObj = new JSONObject(strResult).getJSONObject("weatherinfo");
temp = jsonObj.getInt("temp") + "#" +jsonObj.getString("city");
} catch (JSONException e) {
System.out.println("Json parse error");
e.printStackTrace();
}
return temp;
}
注意事项:网络请求要异步操作
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式