public void getHtml() throws ClientProtocolException, IOException
{
HttpClient httpClient = new DefaultHttpClient();
HttpContext localContext = new BasicHttpContext();
HttpGet httpGet = new HttpGet("http://www.spartanjava.com");
HttpResponse response = httpClient.execute(httpGet, localContext);
String result = "";
BufferedReader reader = new BufferedReader(
new InputStreamReader(
response.getEntity().getContent()
)
);
String line = null;
while ((line = reader.readLine()) != null){
result += line + "\n";
Toast.makeText(activity.this, line.toString(), Toast.LENGTH_LONG).show();
}
}
如何来这不起作用并抛出IOException吗?
#1 楼
我认为您可能在manifest.xml中缺少INTERNET权限。请注意以下代码中提供的<uses-permission>
标记。我在eclipse中测试了您的代码,并且可以正常工作。 顺便说一句,我认为以这种方式使用
String result
是行不通的。没有测试那么远。但我认为您不能仅将字符串添加到字符串中。您需要使用stringBuilder
并追加新字符串。编辑:测试了此
String result
方法,它可以工作。也许问题是您试图一次吐出这么多的吐司。您的代码为检索的html代码的每一行都吐司。我将您的getHtml()
方法设置为String并返回result
,并且它正确返回了...我想不到其他任何异常原因,除了您的AndroidManifest.xml中缺少INTERNET权限...。干杯!
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="test.test.test"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name" android:debuggable="true">
<activity android:name=".test"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="3" />
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
评论
谢谢,尽管我还没有测试代码,因为我现在不在笔记本电脑上。我想你刚刚解决了它:D谢谢=)
–火星
2010年6月18日在8:05
它现在正在工作,我所做的就是更改权限...我正在用吐司来测试下载:D
–火星
2010年6月18日在9:03
评论
...它在哪里引发异常-请您标记代码行并发布错误消息吗?HttpResponse响应= httpClient.execute(httpGet,localContext);那就是引发异常的原因,但是Levara的注释修正了它:D这是允许的事情