码迷,mamicode.com
首页 > Web开发 > 详细

使用Xutils(HttpUtils)请求网络数据

时间:2016-04-04 22:25:48      阅读:667      评论:0      收藏:0      [点我收藏+]

标签:


            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)请求网络数据

标签:

原文地址:http://www.cnblogs.com/weiyangge/p/5352987.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!