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();
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.