こんにちはファインマインドオブSO!
私はこの問題とそのバージョンがSOで何度も提起されていることを知っており、この問題で見つけたすべてのスレッドを読みました。私は見つけることができる解決策のすべての組み合わせを試しましたが、どういうわけか、私はまだ問題を抱えています。私が特定のコードを投稿できるように、私が自分の質問を作成してもかまわないことを願っています。私はAndroidアプリを完全に理解しており、基本的なJavaのバックグラウンドを持っています。
いくつかの変数を定義するには...
sendXMLは、私のXMLコードである文字列です。
httppostは私が投稿しているURLです。
pointsは、サーバーの応答XMLに基づいて最終的に更新するTextViewです。
public void postTo() {
try {
StringEntity entity = new StringEntity(sendXML,HTTP.UTF_8);
entity.setContentType("text/xml");
httppost.setEntity(entity);
HttpResponse response = httpclient.execute(httppost);
HttpEntity responseEntity= response.getEntity();
points.setText(EntityUtils.toString(responseEntity));
} catch (ClientProtocolException e) {
// TODO Auto-generated catch block
points.setText("SomeMessageHere");
e.printStackTrace();
} catch (IOException q) {
// TODO Auto-generated catch block
points.setText("SomeMessageHere");
q.printStackTrace();
}
}
postTo()を呼び出すアプリのボタンをクリックしようとすると、アプリ全体がクラッシュします。どんな助けでも大歓迎です!
以下のLogcat:
03-14 19:03:13.761: E/AndroidRuntime(922): FATAL EXCEPTION: main
03-14 19:03:13.761: E/AndroidRuntime(922): java.lang.IllegalArgumentException: Source string may not be null
03-14 19:03:13.761: E/AndroidRuntime(922): at org.apache.http.entity.StringEntity.<init>(StringEntity.java:59)
03-14 19:03:13.761: E/AndroidRuntime(922): at com.appname.app.Stash.postTo(Stash.java:136)
03-14 19:03:13.761: E/AndroidRuntime(922): at com.appname.app.Stash$1.onClick(Stash.java:97)
03-14 19:03:13.761: E/AndroidRuntime(922): at android.view.View.performClick(View.java:4204)
03-14 19:03:13.761: E/AndroidRuntime(922): at android.view.View$PerformClick.run(View.java:17355)
03-14 19:03:13.761: E/AndroidRuntime(922): at android.os.Handler.handleCallback(Handler.java:725)
03-14 19:03:13.761: E/AndroidRuntime(922): at android.os.Handler.dispatchMessage(Handler.java:92)
03-14 19:03:13.761: E/AndroidRuntime(922): at android.os.Looper.loop(Looper.java:137)
03-14 19:03:13.761: E/AndroidRuntime(922): at android.app.ActivityThread.main(ActivityThread.java:5041)
03-14 19:03:13.761: E/AndroidRuntime(922): at java.lang.reflect.Method.invokeNative(Native Method)
03-14 19:03:13.761: E/AndroidRuntime(922): at java.lang.reflect.Method.invoke(Method.java:511)
03-14 19:03:13.761: E/AndroidRuntime(922): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
03-14 19:03:13.761: E/AndroidRuntime(922): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)
03-14 19:03:13.761: E/AndroidRuntime(922): at dalvik.system.NativeStart.main(Native Method)
03-14 19:03:13.810: W/ActivityManager(297): Force finishing activity com.appname.app/.Stash
03-14 19:03:13.860: W/WindowManager(297): Failure taking screenshot for (328x583) to layer 21015
03-14 19:03:14.360: I/Choreographer(297): Skipped 30 frames! The application may be doing too much work on its main thread.
03-14 19:03:14.390: W/ActivityManager(297): Activity pause timeout for ActivityRecord{411022b8 u0 com.appname.app/.Stash}
03-14 19:03:14.390: E/SurfaceFlinger(36): ro.sf.lcd_density must be defined as a build property
以下は、sendXML文字列の値を出力する追加のlogcatです。文字列の先頭にxmlversion="1.0"を含める場合と含めない場合の両方を試しました。どちらが正しいかわかりません。もちろん、XMLNS = "URLHERE"には、投稿する正しいURLがあります。
03-14 23:53:26.870: I/myApp(1048): sendXML = <?xml version="1.0"?><EmailRequest xmlns="URLHERE"><Hash>5e1da0407254ec8882c6f6c27385a890ef544b32</Hash></EmailRequest>
03-14 23:53:26.970: D/AndroidRuntime(1048): Shutting down VM
03-14 23:53:26.970: W/dalvikvm(1048): threadid=1: thread exiting with uncaught exception (group=0x40a71930)
03-14 23:53:26.990: E/AndroidRuntime(1048): FATAL EXCEPTION: main
03-14 23:53:26.990: E/AndroidRuntime(1048): android.os.NetworkOnMainThreadException
03-14 23:53:26.990: E/AndroidRuntime(1048): at android.os.StrictMode$AndroidBlockGuardPolicy.onNetwork(StrictMode.java:1117)
03-14 23:53:26.990: E/AndroidRuntime(1048): at java.net.InetAddress.lookupHostByName(InetAddress.java:385)
03-14 23:53:26.990: E/AndroidRuntime(1048): at java.net.InetAddress.getAllByNameImpl(InetAddress.java:236)
03-14 23:53:26.990: E/AndroidRuntime(1048): at java.net.InetAddress.getAllByName(InetAddress.java:214)
03-14 23:53:26.990: E/AndroidRuntime(1048): at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:137)
03-14 23:53:26.990: E/AndroidRuntime(1048): at org.apache.http.impl.conn.AbstractPoolEntry.open(AbstractPoolEntry.java:164)
03-14 23:53:26.990: E/AndroidRuntime(1048): at org.apache.http.impl.conn.AbstractPooledConnAdapter.open(AbstractPooledConnAdapter.java:119)
03-14 23:53:26.990: E/AndroidRuntime(1048): at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:360)
03-14 23:53:26.990: E/AndroidRuntime(1048): at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:555)
03-14 23:53:26.990: E/AndroidRuntime(1048): at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:487)
03-14 23:53:26.990: E/AndroidRuntime(1048): at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:465)
03-14 23:53:26.990: E/AndroidRuntime(1048): at com.myapp.app.Stash.postTo(Stash.java:140)
03-14 23:53:26.990: E/AndroidRuntime(1048): at com.mymapp.app.Stash$1.onClick(Stash.java:96)
03-14 23:53:26.990: E/AndroidRuntime(1048): at android.view.View.performClick(View.java:4204)
03-14 23:53:26.990: E/AndroidRuntime(1048): at android.view.View$PerformClick.run(View.java:17355)
03-14 23:53:26.990: E/AndroidRuntime(1048): at android.os.Handler.handleCallback(Handler.java:725)
03-14 23:53:26.990: E/AndroidRuntime(1048): at android.os.Handler.dispatchMessage(Handler.java:92)
03-14 23:53:26.990: E/AndroidRuntime(1048): at android.os.Looper.loop(Looper.java:137)
03-14 23:53:26.990: E/AndroidRuntime(1048): at android.app.ActivityThread.main(ActivityThread.java:5041)
03-14 23:53:26.990: E/AndroidRuntime(1048): at java.lang.reflect.Method.invokeNative(Native Method)
03-14 23:53:26.990: E/AndroidRuntime(1048): at java.lang.reflect.Method.invoke(Method.java:511)
03-14 23:53:26.990: E/AndroidRuntime(1048): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
03-14 23:53:26.990: E/AndroidRuntime(1048): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)
03-14 23:53:26.990: E/AndroidRuntime(1048): at dalvik.system.NativeStart.main(Native Method)