我试图从用户输入的网站中获取字符串中的 HTML 源代码,到目前为止我的代码如下所示:
public String getURLContent(String url)
{
try
{
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpGet httpGet = new HttpGet(url);
ResponseHandler<String> resHandler = new BasicResponseHandler();
String page = httpClient.execute(httpGet, resHandler);
return page;
}
catch (ClientProtocolException e)
{
e.printStackTrace();
return "";
}
catch (IOException e)
{
e.printStackTrace();
return "";
}
}
每次我尝试运行它时,我都会遇到第二个问题(IOException),根据文档,这意味着服务器无法给出有效的响应......我正在使用“http:\www.google.com\”之类的网站进行测试“,所以他们肯定应该回应