首页 | 新闻 | 新品 | 文库 | 方案 | 视频 | 下载 | 商城 | 开发板 | 数据中心 | 座谈新版 | 培训 | 工具 | 博客 | 论坛 | 百科 | GEC | 活动 | 主题月 | 电子展
返回列表 回复 发帖

httpclient常用基本抓取类(6)

httpclient常用基本抓取类(6)

private String getByHttpClient(String url, String encode,
            HttpClient httpClient) {
        int count = 2;
        String result = "";
        String urlString = url;
        for (int i = 0; i <= count; i++) {
            try {
                HttpGet httpRequst = new HttpGet(urlString);
                httpRequst.setHeader("Content-Type",
                        "application/x-www-form-urlencoded");
                HttpResponse httpResponse = httpClient.execute(httpRequst);// 其中HttpGet是HttpUriRequst的子类
                if (httpResponse.getStatusLine().getStatusCode() == 200) {
                    HttpEntity httpEntity = httpResponse.getEntity();
                    if (httpEntity.getContentEncoding() != null) {
                        if ("gzip".equalsIgnoreCase(httpEntity
                                .getContentEncoding().getValue())) {
                            httpEntity = new GzipDecompressingEntity(httpEntity);
                        } else if ("deflate".equalsIgnoreCase(httpEntity
                                .getContentEncoding().getValue())) {
                            httpEntity = new DeflateDecompressingEntity(
                                    httpEntity);
                        }
                    }
                    result = enCodetoString(httpEntity, encode);// 取出应答字符串
                    if (resultTest(result)) {
                        System.out.println(ip + "公司代理成功抓取" + url);
                        return result;
                    } else if (result.contains("function JumpSelf")
                            && result.contains("WebShieldSessionVerify")) {
                        int indexs = result.indexOf("&WebShieldSessionVerify");
                        int indexe = result.indexOf("\";}</script>");
                        String verify = result.substring(indexs, indexe);
                        urlString = urlString + verify;
                    } else if (result.contains("function JumpSelf")
                            && !result.contains("WebShieldSessionVerify")) {
                        urlString = url;
                    }
                } else
                    httpRequst.abort();
            } catch (ClientProtocolException e) {
                System.out.println(ip + "代理ip拒绝了");
            } catch (IOException e) {
                System.out.println(ip + "代理读取超时");
            }
        }
        return "";
    }
返回列表