使用json将数据从android发送到php

时间:2013-10-24 18:39:11

标签: java php android mysql json

嘿我试图从我的Android应用程序发送数据到Web服务器并使用mysql将其发送到数据库,尽管它似乎没有任何错误,我的代码不起作用

android java code:

                      String categorys=category.getText().toString();
          String authors = author.getText().toString(); 
          String quess = question.getText().toString(); 
          String anss = answer.getText().toString();    

                    try {
                        JSONObject json = new JSONObject(); 
                        json.put("category",categorys); 
                        json.put("ques",quess);
                        json.put("ans",anss);
                        json.put("authors",authors);
                        postData(json);


                    } catch (JSONException e) {
                        e.printStackTrace();
                    }

                }
            });     
        }

        public void postData(JSONObject json) throws JSONException {
            HttpClient httpclient = new DefaultHttpClient();

            try { 
                HttpPost httppost = new HttpPost("http://shlomo.webuda.com/androidtomy.php");

                List<NameValuePair> nvp = new ArrayList<NameValuePair>(2);    
                nvp.add(new BasicNameValuePair("json", json.toString()));
                //httppost.setHeader("Content-type", "application/json");  
                httppost.setEntity(new UrlEncodedFormEntity(nvp));
                HttpResponse response = httpclient.execute(httppost); 

                if(response != null) {
                    InputStream is = response.getEntity().getContent();
                    //input stream is response that can be shown back on android
                }

            }
            catch (Exception e) 
            {
                e.printStackTrace();
            } 




                }`

php code

mysql_connect("something","something","something");
mysql_select_db("something");
 $json = $_SERVER['HTTP_JSON'];
 echo "JSON: \n";
 var_dump($json);
 echo "\n\n";

 $data = json_decode($json,true);
 var_dump($data);




$category=$data['category'];
$author=$data['authors'];
$question=$data['ques'];
$answer=$data['ans'];
$sql = 'INSERT INTO Ques(Ques_Author, Ques_Question,Ques_Answer,Ques_Category,Ques_Approve) values("category","author","question","answer","0")';
mysql_query($sql);

}    

&GT;

1 个答案:

答案 0 :(得分:0)

如评论中所述,PHP文件有几个问题。请尝试以下代码:

mysql_connect("something","something","something");
mysql_select_db("something");


$json = $_REQUEST['json'];
echo "JSON: \n";
var_dump($json);
echo "\n\n";

$data = json_decode($json,true);
var_dump($data);

$category=$data['category'];
$author=$data['authors'];
$question=$data['ques'];
$answer=$data['ans'];
$sql = "INSERT INTO Ques(Ques_Author, Ques_Question,Ques_Answer,Ques_Category,Ques_Approve) values($category,$author,$question,$answer,0)";
mysql_query($sql);

此外,您不应该使用mysql_query函数。您应该使用mysqli_ * * - 函数或PDO(http://php.net/manual/en/book.pdo.php)。从PHP5.5开始,不推荐使用mysql_query,这是有充分理由的。特别是当您将上述php文件中似乎是正确的URL发布时。

如果您仍然遇到问题,请提供$ json-variable的内容,以及Java代码中的请求副本