4

Android からパラメータの値を渡して MySQL データベースから特定のデータを取得しようとしています。次に、データを返すためにクエリの PHP スクリプトでこの値を読み取ります。

アプリケーションを実行すると、返された結果の値が null であるため、エラー解析データ例外が発生しますか?

結果が null になるのはなぜですか? エラーは PHP スクリプトによるものですか、それとも Java コードによるものですか?

私を助けてください

前もって感謝します!

city.php:

  <?php
     mysql_connect("localhost","username","password");
     mysql_select_db("Countries");
     $sql=mysql_query("select  City_Population  from City where Name= "'.$_REQUEST['Name']."'");
     while($row=mysql_fetch_assoc($sql))
     $output[]=$row;
      print(json_encode($output));
      mysql_close();
        ?>

引用符

Java クラス:

       public class ConnectActivity extends ListActivity {

           String add="http://10.0.2.2/city.php";
           public void onCreate(Bundle savedInstanceState) {
           super.onCreate(savedInstanceState);
           setContentView(R.layout.main);

            new Connect().execute();

         }

  private class Connect extends AsyncTask<Void,Void,String>
   {     
             private  String result = "";
             private  InputStream is=null;
            private  String city_name="London";
           protected String doInBackground(Void... params) {
            try
          {
                  ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
                 nameValuePairs.add(new BasicNameValuePair("Name",city_name));
                 HttpClient httpclient = new DefaultHttpClient();
                HttpPost httppost = new HttpPost(add);
                httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
               HttpResponse response = httpclient.execute(httppost);
               HttpEntity entity = response.getEntity();
              is = entity.getContent();
                 }
        catch(Exception e)
           {
               Log.e("log_tag", "Error in http connection "+e.toString());
                 }


           //convert response to string
    try{
    BufferedReader reader = new BufferedReader(new InputStreamReader(is,"utf-8"),8);
    StringBuilder sb = new StringBuilder();
     String line = null;
     while ((line = reader.readLine()) != null) {
      sb.append(line + "\n");
       }
        is.close();
        result=sb.toString();
           }
          catch(Exception e){
           Log.e("log_tag", "Error converting result "+e.toString());
               }


          return result;
          }
       protected  void onPostExecute(String  result){

        try{
            JSONArray jArray = new JSONArray( result);
            JSONObject json_data=null;
            for(int i=0;i<jArray.length();i++)
            {
                json_data = jArray.getJSONObject(i);
                int  population=json_data.getInt("City_Population");

              TextView City_Name =(TextView)findViewById(R.id.city_name);
                                                                           TextView  City_population=(TextView)findViewById(R.id.city_pop);
                            City_Name.setText(json_data.getString(city_name));
                                                                          City_population.setText(population+"  " );
            }
            }
            catch(JSONException e){
            Log.e("log_tag", "Error parsing data "+e.toString());
            }


                     }
                                                                  }

                                                    }
4

2 に答える 2

2
     <?php
         $name=$_POST['NAME'];               
         mysql_connect("localhost","username","password");
         mysql_select_db("Countries");
         $sql=mysql_query("select  City_Population as citypop  from City where Name='$name' ");
         while($row=mysql_fetch_assoc($sql))
          $output=$row['citypop'];
        print(json_encode($output));
         mysql_close();
         ?>

あなたはこれがうまくいくことを確認してみてください。

于 2012-04-05T09:32:19.777 に答える
1

a) あなたのスクリプトはsql インジェクションを起こしやすいです。$_REQUEST[...] パラメータを SQL クエリ文字列に入れる前に、適切にエンコードする必要があります。
b) エラー処理が必要です。mysql_* 関数はどれも失敗する可能性があり、スクリプトはそれらのエラー状態を処理する必要があります。クライアントは一部の json データを予期しているため、エラー メッセージ/コードを json エンコードされた配列として返すだけです。
c)Content-typeヘッダーをに設定したい場合があります。RFC 4627およびhttp://docs.php.net/function.headerapplication/jsonを参照してください。

<?php
define('DEBUG_DETAILS', true);
function onError($msg, $details) {
    $msg = array(
        'status'=>'error',
        'message'=>$msg
    );
    if ( defined('DEBUG_DETAILS') && DEBUG_DETAILS ) {
        $msg['details'] = $details;
    }
    die(json_encode($msg));
}


$mysql = mysql_connect("localhost","username","password") or OnError('database connection failed', mysql_error());
mysql_select_db("Countries", $mysql) or OnError('database selection failed', mysql_error($mysql));

$query = "
    SELECT
        City_Population
    FROM
        City
    WHERE
        Name='%s'
";
$query = sprintf($query, mysql_real_escape_string($_REQUEST['Name'], $mysql));
$sql=mysql_query($query, $mysql) or OnError('query failed', array('query'=>$query, 'errstr'=>mysql_error($mysql)));

$output = array(
    'count'=>0,
    'records'=>array()
);
while( $row=mysql_fetch_assoc($sql) ) {
    $output['records'][]=$row;
    $output['count']+=1;
}
echo json_encode(array(
    'status'=>'ok',
    'result'=>$output
));

Android クライアントは、たとえば次のようなオブジェクト リテラルを受け取る必要があります。

{
  status:"ok",
  result: {
    'count': 2,
    'records': [ 10000, 15000]
  }
}

また

{
  status:"error",
  message: "database connection failed",
  setails: "...."
}
于 2012-04-05T09:38:49.217 に答える