码迷,mamicode.com
首页 > 其他好文 > 详细

网络数据请求

时间:2020-01-15 17:54:24      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:null   cond   cat   put   out   sys   数据   err   page   

自己用

            String url = getworkSheet(keyword, worksheetCondition, page, pagezise);
            Request.Builder builder_ = new Request.Builder()
                    .url(url)
                    .cacheControl(CacheControl.FORCE_NETWORK)
                    .get();
            Response response_ = null;
            try {
                response_ = HttpUtils.getOkHttpClient().newCall(builder_.build()).execute();
                ResponseBody body = response_.body();
                if (body != null) {
                    String data = body.string();
        System.out.println("===data=" + data);
                }
            } catch (Exception e) {
                System.out.println("===error" + e.getMessage());
            }

网络数据请求

标签:null   cond   cat   put   out   sys   数据   err   page   

原文地址:https://www.cnblogs.com/wisdomzhang/p/12197984.html

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