DefaultHttpClient 는 GZIPInputStream 을 사용 하여 압축 을 푼다

DefaultHttpClient 는 GZIPInputStream 을 사용 하여 압축 을 풀 고 브 라 우 저가 웹 사 이 트 를 방문 할 때 브 라 우 저가 되 돌아 올 수 있 는 메시지 헤더 에 있 습 니 다.
Content - Encoding: gzip 은 서버 가 돌아 온 메시지 가 gzip 압축 을 거 쳤 음 을 나타 낸다. 이렇게 하 는 것 은 데 이 터 를 절약 하기 위해 서 이다. 브 라 우 저 는 gzip 압축 된 http 패 키 지 를 받 아 압축 을 풀 고 렌 더 링 하 는 것 이다.apache 에서 제공 하 는
defaultHttpClient 가 http 요청 을 조작 할 때 사용 할 수 있 습 니 다.
GZIPInputStream 은 gzip 압축 된 패 킷 을 압축 해제 합 니 다.안 드 로 이 드 sdk 가 네트워크 프로 그래 밍 을 할 때 도 이런 방법 을 사용 할 수 있 습 니 다.간단 한 코드 는 다음 과 같 습 니 다.
    DefaultHttpClient httpClient =  new DefaultHttpClient();
    //dns   ip
    String[] dnsIps = {"jsdx", "yndx", "bjdx", "bjlt", "sclt", "shlt", "gg"};

    for(String ip : dnsIps)
    {
        HttpPost post = new HttpPost("http://webscan.360.cn/tools/dnsInfo.php");
        post.addHeader("Referer", "http://webscan.360.cn/tools/dnslookup");
        post.addHeader("X-Requested-With", "XMLHttpRequest");
        post.addHeader("Content-Type","application/x-www-form-urlencoded; charset=UTF-8");
        post.addHeader("Accept", "*/*");
        post.addHeader("Accept-Encoding", "gzip, deflate");
        post.addHeader("Accept-Language", "zh-cn,en-us;q=0.7,en;q=0.3");
        post.addHeader("Pragma", "no-cache");
        post.addHeader("Cache-Control", "no-cache");

        List<BasicNameValuePair> params = new ArrayList<BasicNameValuePair>();
        params.add(new BasicNameValuePair("dns_ip", ip));
        params.add(new BasicNameValuePair("domain_name", domain));
        params.add(new BasicNameValuePair("dns_type", "A"));
        UrlEncodedFormEntity formEntity = null;
        HttpResponse response = null;
        String responseHtml = null;
        try
        {
            formEntity = new UrlEncodedFormEntity(params, "utf-8");
            post.setEntity(formEntity);
            response = httpClient.execute(post);
            InputStream is= response.getEntity().getContent();
          is= new GZIPInputStream(is);
          BufferedReader br = new BufferedReader(new InputStreamReader(is));
          String line = null;
          StringBuffer sb = new StringBuffer();
            while((line = br.readLine())!=null) {
             sb.append(line);
            }
            responseHtml = sb.toString();

        } catch (UnsupportedEncodingException e)
        {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (ClientProtocolException e)
        {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (IOException e)
        {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

좋은 웹페이지 즐겨찾기