gpt4 book ai didi

Android HttpPost 崩溃,无法调试?

转载 作者:行者123 更新时间:2023-11-29 15:31:37 25 4
gpt4 key购买 nike

设备是 Xoom 平板电脑。出于某种原因,我无法执行 HttpPost,当我尝试时我无法捕获错误。我尝试了一堆基本示例,它们都以相同的方式崩溃(参见堆栈跟踪)。如果我错过了许可,我会附上我的 list 。我知道它发生在 client.execute(post); 语句中。错误没有被捕获,我得到的只是你在下面的堆栈跟踪中看到的。我尝试了很多不同的方法,但我终生无法判断真正的错误是什么。发布数据似乎并不重要,简单的 HttpGet 请求也会发生同样的事情。我到底错过了什么?

有问题的 block

try {
HttpClient client = new DefaultHttpClient();
HttpPost post = new HttpPost("http://share1.iqperspective.com/test");
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
nameValuePairs.add(new BasicNameValuePair("avar", "test data"));
post.setEntity(new UrlEncodedFormEntity(nameValuePairs));
client.execute(post);

}catch (UnsupportedEncodingException e1) {
Log.v(TAG, "catch1");
}catch (ClientProtocolException e) {
Log.v(TAG, "catch2");
}catch (IOException e) {
Log.v(TAG, "catch3");
}

list

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.quisenberry.iqperspective"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="11" />
<application android:icon="@drawable/img_icon" android:label="@string/app_name">
<activity android:name="IQPerspective" 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-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />
</manifest>

堆栈

Thread [<1> main] (Suspended (exception NetworkOnMainThreadException))  
DefaultRequestDirector.execute(HttpHost, HttpRequest, HttpContext) line: 530
DefaultHttpClient(AbstractHttpClient).execute(HttpHost, HttpRequest, HttpContext) line: 555
DefaultHttpClient(AbstractHttpClient).execute(HttpUriRequest, HttpContext) line: 487
DefaultHttpClient(AbstractHttpClient).execute(HttpUriRequest) line: 465
IQPerspective$13.onClick(View) line: 294
Button(View).performClick() line: 3100
View$PerformClick.run() line: 11644
ViewRoot(Handler).handleCallback(Message) line: 587
ViewRoot(Handler).dispatchMessage(Message) line: 92
Looper.loop() line: 126
ActivityThread.main(String[]) line: 3997
Method.invokeNative(Object, Object[], Class, Class[], Class, int, boolean) line: not available [native method]
Method.invoke(Object, Object...) line: 491
ZygoteInit$MethodAndArgsCaller.run() line: 841
ZygoteInit.main(String[]) line: 599
NativeStart.main(String[]) line: not available [native method]

最佳答案

我认为异常的名称 (NetworkOnMainThreadException) 告诉您发生了什么。您需要在非 UI 线程上执行您的网络代码。见文章Painless Threading了解更多信息。

这是 Honeycomb 的新功能。查看docs for the exception了解更多信息。

关于Android HttpPost 崩溃,无法调试?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5970650/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com