HttpClient的用法

原文链接: http://www.cnblogs.com/plmmlp09/p/4306634.html
1 HttpClient httpClient = new DefaultHttpClient();
2 HttpGet httpGet = new HttpGet(url);
3 httpGet.addHeader("Accept-Language","zh-CN");//指定返回中文
4 HttpResponse httpResponse = httpClient.execute(httpGet);
5 if(httpResponse.getStatusLine().getStatusCode() == 200){
6     HttpEntity entity = httpResponse.getEntity();
7     String response = EntityUtils.toString(entity,"utf-8");
8 }

 

转载于:https://www.cnblogs.com/plmmlp09/p/4306634.html

你可能感兴趣的:(HttpClient的用法)