0

私は Android と Java にかなり慣れていません。以下のコードはIllegalStateException. print log ステートメントを配置することで、コードが次の行に到達することがわかりました。

 "HttpPost post = new HttpPost(string+params)" (makes it to "Point 1")

エラーが発生する理由がわかりません。HttpPost に送信された URL は有効です。

代わりに、コメントアウトされた HttpGet 行を使用してみましたが、同じエラーが発生しました。

public String ReadQuery(String SQL)
    {

        String host = "http://web.engr.illinois.edu/~dyel-net/readquery.php";


        DefaultHttpClient httpclient = new DefaultHttpClient();

        try
        {



        HttpPost httpPost = new HttpPost(host);
        httpPost.addHeader("Accept", "text/plain");
        Log.w("DEBUGGING PRINT", "point 1");
        List <NameValuePair> nvps = new ArrayList <NameValuePair>();
        nvps.add(new BasicNameValuePair("user", username));
        nvps.add(new BasicNameValuePair("pw", password));
        nvps.add(new BasicNameValuePair("sql", SQL));
        httpPost.setEntity(new UrlEncodedFormEntity(nvps));
        Log.w("DEBUGGING PRINT", "point 2");
        Log.w("DEBUGGING PRINT", httpPost.getURI().toString());
        Log.w("DEBUGGING PRINT", httpPost.getEntity().toString());
        HttpResponse response = httpclient.execute(httpPost);
        Log.w("DEBUGGING PRINT", "point 3");
        HttpEntity entity = response.getEntity();
        Log.w("DEBUGGING PRINT", "point 4");
        String htmlResponse = EntityUtils.toString(entity);
        Log.w("DEBUGGING PRINT", "point 5");
        return htmlResponse;

        } catch (ClientProtocolException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        return "ERROR";

私のエラー:

10-21 13:39:09.472: W/デバッグ PRINT(866): ポイント 1 10-21 13:39:09.582: W/デバッグ PRINT(866): ポイント 2 10-21 13:39:09.582: W/デバッグ印刷 (866): http://web.engr.illinois.edu/~dyel-net/readquery.php? 10-21 13:39:09.616: W/DEBUGGING PRINT(866): org.apache.http.params.BasicHttpParams@4186af10 10-21 13:39:22.792: D/AndroidRuntime(866): VM 10-21 のシャットダウン13:39:22.802: W/dalvikvm(866): threadid=1: キャッチされない例外で終了するスレッド (group=0x41465700) 10-21 13:39:23.713: E/AndroidRuntime(866): 致命的な例外: メイン 10-21 13:39:23.713: E/AndroidRuntime(866): java.lang.IllegalStateException: アクティビティ 10-21 13:39:23.713: E/AndroidRuntime(866): android.view.View$1 のメソッドを実行できませんでした。 onClick(View.java:3633) 10-21 13:39:23.713: E/AndroidRuntime(866): android.view.View.performClick(View.java:4240) 10-21 13:39:23.713: E/ AndroidRuntime(866): android.view.View$PerformClick.run(View.java:17721) 10-21 13:39:23.713: E/AndroidRuntime(866): android.os.Handler.handleCallback(Handler.java で:

4

1 に答える 1

2
 HttpPost post = new HttpPost(host+params);
        //HttpGet get = new HttpGet(host+params);

これは、HttpClient を使用して POST 要求を行う正しい方法ではありません。HTTP GET リクエストと HTTP POST リクエストの動作は異なります。HTTP GET リクエストでは、URL の一部としてデータを送信できますhttp://mysite.com?feild1=data1&feild2=data2が、HTTP POST リクエストには、request message bodyデータをサーバーに書き込む必要がある場所があります。

次のコードを試してください。

HttpPost httpPost = new HttpPost("http://targethost/login");
List <NameValuePair> nvps = new ArrayList <NameValuePair>();
nvps.add(new BasicNameValuePair("user", username));
nvps.add(new BasicNameValuePair("pw", password));
nvps.add(new BasicNameValuePair("sql", SQL));
httpPost.setEntity(new UrlEncodedFormEntity(nvps, "UTF-8"));
HttpResponse response = httpclient.execute(httpPost);
于 2013-10-20T23:25:05.553 に答える