使用Xutils(HttpUtils)请求网络数据
Posted 天空很大,我们很小
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Xutils(HttpUtils)请求网络数据相关的知识,希望对你有一定的参考价值。
HttpUtils utils = new HttpUtils();
utils.send(HttpMethod.POST, urls[i] + 1,
new RequestCallBack<String>() {
@Override
public void onFailure(HttpException arg0, String arg1) {
// TODO Auto-generated method stub
}
@Override
public void onSuccess(ResponseInfo<String> arg0) {
//解析数据
String result = arg0.result;
if (i == 0 || i == 1) {
XStream stream = new XStream();
stream.processAnnotations(Super1.class);
Super1 super1 = (Super1) stream.fromXML(result);
List<News> list = super1.getNewslist()
.getNews();
System.out.println("集合:" + list);
}
if (i == 2 || i == 3) {
}
}
});
以上是关于使用Xutils(HttpUtils)请求网络数据的主要内容,如果未能解决你的问题,请参考以下文章