1

次のように、サーバー上のphpファイルに文字列値を送信しています。

    // Create a new HttpClient and Post Header
    HttpClient httpclient = new DefaultHttpClient();
    HttpPost httppost = new HttpPost("serverurl");
    Log.d("httppost..", httppost + "");
    try {
        List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1);
        nameValuePairs.add(new BasicNameValuePair("data", dataCount + ""));
        httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
        HttpResponse response = httpclient.execute(httppost);
    }

しかし、アプリから送信したデータが表示されません。助けてくれてありがとう。

4

0 に答える 0