我们如何告诉主机我们正在从Android设备请求一个网页

时间:2012-06-09 04:09:06

标签: android

实际上我正在使用HttpClient()和HttpPost()方法来下载html源代码 这是下载的代码:

HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(_url);
try {
  // Execute HTTP Post Request
  HttpResponse response = httpclient.execute(httppost);
  responseBody = EntityUtils.toString(response.getEntity());
    }

如果我执行上述代码,某些网站如www.google.com(将提供用户代理特定代码(HTML代码)),而不是提供适合Android的完整信息。所以我可以告诉主持人我正在从Android设备请求网页。

0 个答案:

没有答案