-1

ここに私のコード:

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();

        StrictMode.setThreadPolicy(policy);


        String result = "";
        //the year data to send
        ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
        nameValuePairs.add(new BasicNameValuePair("year","1980"));
        InputStream is = null;
        //http post
        try{
            HttpClient httpclient = new DefaultHttpClient();
            HttpPost httppost = new HttpPost("dropbox link to php code");
            httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
            HttpResponse response = httpclient.execute(httppost);
            HttpEntity entity = response.getEntity();
            is = entity.getContent();
            System.out.println(is);
        }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,"iso-8859-1"),8);
            StringBuilder sb = new StringBuilder();
            String line = null;
            while ((line = reader.readLine()) != null) {
                sb.append(line + "\n");
            }
            is.close();

            result=sb.toString();
            System.out.println("1 " + result);
        }catch(Exception e){
            Log.e("log_tag", "Error converting result "+e.toString());
        }

        //parse json data
        try{
            JSONArray jArray = new JSONArray(result);
            for(int i=0;i<jArray.length();i++){
                JSONObject json_data = jArray.getJSONObject(i);
                Log.i("log_tag","id: "+json_data.getInt("id")+
                        ", name: "+json_data.getString("name")+
                        ", sex: "+json_data.getInt("sex")+
                        ", birthyear: "+json_data.getInt("birthyear")
                        );
            }
        }
        catch (JSONException e){
            Log.e("log_tag", "Error parsing data "+e.toString());
        }
    }
}

HTTPPost 内のリンクは、Dropbox の PHP コードへのダウンロード リンクです。そのコードは次のようになります。

<?php
mysql_connect("host","username","password");
mysql_select_db("1487057_test");

$q=mysql_query("SELECT * FROM people WHERE birthyear>'".$_REQUEST['year']."'");
while($e=mysql_fetch_assoc($q))
        $output[]=$e;

print(json_encode($output));

mysql_close();
?>

問題は、PHP コードが HTTPClient によって「実行」されていないように見えることです。入力ストリームを出力すると、PHP コードの最初の 2 行だけが返されます。JSON ログがまったく出力されないようです。誰が何が悪いのか分かりますか?

4

2 に答える 2

0

PHP を次のように変更します。

<?php
$sql = "SELECT * FROM people WHERE birthyear>'".$_REQUEST['year']."'";

mysql_query("set names utf8");
$result = mysql_query($sql);
while ($e = mysql_fetch_assoc($result)) {
    $output[]=$e;
}

print(json_encode($output));
mysql_close($dbhost);

?>

于 2013-09-01T21:20:47.403 に答える