2

私は PHP と Java http クライアントが初めてで、サーバー上の PHP スクリプトにメッセージを投稿しようとしています。次の例を試しました: http://webtutsdepot.com/2011/11/15/android-tutorial-how -to-post-data-from-an-android-app-to-a-website/

ただし、JSON結果をAndroidアプリに送信する方法を理解できません。使用しているコードは次のとおりです。

ジャワ:

      public void send(View v)
      {
     // get the message from the message text box
     String msg = Et.getText().toString();  

     // make sure the fields are not empty
     if (msg.length()>0)
     {
        HttpClient httpclient = new DefaultHttpClient();
        HttpPost httppost = new HttpPost("http://animsinc.com/query.php");
     try {
       List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
       nameValuePairs.add(new BasicNameValuePair("id", "12345"));
       nameValuePairs.add(new BasicNameValuePair("message", msg));
       httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
       httpclient.execute(httppost);
       Et.setText(""); // clear text box
     } catch (ClientProtocolException e) {
         // TODO Auto-generated catch block
     } catch (IOException e) {
         // TODO Auto-generated catch block
     }

     }
     else
     {
        // display message if text fields are empty
         Toast.makeText(getBaseContext(),"All field are required",Toast.LENGTH_SHORT).show();
     }

 }

PHP:

       <?php

       require 'phtry.php';

       $message = $_POST["message"]; 

       $query = "SELECT `surname`,`firstname` FROM `users`";


       $query1 = "SELECT * FROM  `users` WHERE id = $message";

      if ($query_run = mysql_query($query1)){
 //echo 'Success.';
 while ($query_row = mysql_fetch_assoc($query_run)){

$surname = $query_row['surname'];
$firstname = $query_row['firstname'];



}


$out [] = $query_row;
print(json_encode($out)); // If I check with my web browser I get a [false] display here

}else{
    echo 'No Success';
}


    ?>

私はこれに慣れていないので、正しいことをしているかどうかも知りたいです。

4

1 に答える 1

1

あなたのコードはPHP側で混乱しています。あなたはただ物事をエコーすることはできません。これにより、JSONの解析が失敗します。

Googleselfの軽量GSONライブラリを使用することをお勧めします。POJOクラスを使用してjsonを解析します。GSONでPOJOクラスを作成したら、次のように、HttpResponseからを使用しHttpPostて応答自体を読み取るだけです。

        HttpClient client = new DefaultHttpClient();
        HttpPost post = new HttpPost(URL);

        try {
            List<NameValuePair> values = new ArrayList<NameValuePair>(2);
            values.add(new BasicNameValuePair("id", "12345"));
            values.add(new BasicNameValuePair("message", "asdf");
            post.setEntity(new UrlEncodedFormEntity(values));

            HttpResponse httpresponse = client.execute(post);
            HttpEntity entity = httpresponse.getEntity();
            InputStream stream = entity.getContent();

            Gson gson = new Gson();
            Reader reader = new InputStreamReader(stream);

            Response finishresponse = gson.fromJson(reader, Response.class);
            return finishresponse;
        } catch (Exception e) {
            e.printStackTrace();
        }
        return null;

私の場合、POJOクラスはResponse私が作成したクラスです。

于 2013-03-18T11:29:45.297 に答える