1

Android デバイスから MySQL にデータを保存しています。私のコードは Localhost を使用すると正常に動作しますが、ホストされたドメインを使用して試してみると. それは私とエラーを与えます。

エラーが返されました

ERROR
The requested URL could not be retrieved

While trying to process the request:

POST /insert.php HTTP/1.1
Transfer-Encoding: chunked
Content-Type: application/x-www-form-urlencoded
Host: mydomain.com
Connection: Keep-Alive
User-Agent: Apache-HttpClient/UNAVAILABLE (java 1.4)

The following error was encountered:
Invalid Request

AsyncTask 内の Java コード

.
.
.
ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
nameValuePairs.add(new BasicNameValuePair("user_id", userId));
HttpPost httppost = new HttpPost("http://mydomain.com/insert.php");
HttpClient httpclient = new DefaultHttpClient();

UrlEncodedFormEntity urlEncodeFormEntity = new UrlEncodedFormEntity(nameValuePairs);
urlEncodeFormEntity.setChunked(true);

httppost.setEntity(urlEncodeFormEntity);
HttpResponse response = httpclient.execute(httppost);
.
.
.

この問題を解決するのを手伝ってください。再びLocalhostを使用して動作します。

編集:

PHP コード: これは、デバイスが指定された URL に到達できるかどうかをテストするためのものです。

<?php
    echo "Ive been reached.";
    //Codes to connect DB and To Insert goes here
?>
4

2 に答える 2

0

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

 HttpClient httpclient = new DefaultHttpClient();
 HttpPost httppost = new HttpPost("http://exampple.com/insert-data.php");
 List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1);
 nameValuePairs.add(new BasicNameValuePair("id", "1"));
 try{
  httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
  ResponseHandler<String> responseHandler = new BasicResponseHandler();

  String response = httpclient.execute(httppost, responseHandler);

  String reverseString = response;

  Log.d("Mishu Complain",reverseString);
 } catch(Exception e){ // check error here  }

ログでエラーを見つけるには、このコードを入力できます

catch (Exception anyError) {
             Log.e("Mishu-Cn-Error", "exception",anyError);

        }
于 2012-08-23T10:17:03.183 に答える
0

行を削除してこの問題を解決しました

urlEncodeFormEntity.setChunked(true);
于 2012-10-25T09:44:29.653 に答える