Android Json to Server不发送数据

时间:2014-11-26 10:25:03

标签: php android json

我遇到了问题。我在这里读了很多,但不幸的是我无法得到我的问题的答案。 我想将Json帖子发送到我的服务器。然后,服务器应该将该字符串保存在我的数据库中。

到目前为止,这是我的服务器代码:

<?php
include('db_connect.php');
$db = new _DB_Connect();
$db->connect();

if(isset($_POST['regid'])){
    $data = json_decode($_POST['regid']);

    $save_entry = "insert into gcm_users (gcm_regid) values ('$data')";
    mysql_query($save_entry) or die (mysql_error());
}else{
    echo 'no data get';
}

?>

这是我在Android手机上的方法。

public String sendJson(View view){
        InputStream inputStream = null;
        String result = "";
        String url2 = "http://192.168.0.5/control_center/functions/incomming.php";
        TextView textView_result;
        textView_result = (TextView) findViewById(R.id.textView_result);

        //strict mode for networking
        StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
        StrictMode.setThreadPolicy(policy);

        try {
            HttpClient httpClient = new DefaultHttpClient();
            HttpPost httpPost = new HttpPost(url2);
            httpPost.setHeader("Accept", "application/json");
            httpPost.setHeader("Content-Type" , "application/json");

            JSONObject jsonObject = new JSONObject();
            jsonObject.put("regid", "blablabla");
            String json = jsonObject.toString();

            StringEntity se = new StringEntity(json);

            httpPost.setEntity(se);
            HttpResponse httpResponse = httpClient.execute(httpPost);

            inputStream = httpResponse.getEntity().getContent();
            if(inputStream != null) {
                System.out.println(convertInputStreamToString(inputStream));
            }
            else {
                result = "Did not work!";
            }

            textView_result.setText(httpResponse.toString());
            System.out.println(jsonObject.toString());

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

        return result;
    }

现在

System.out.println(convertInputStreamToString(inputStream));

告诉我,我没有数据

echo 'no data get';

所以我从服务器得到一个响应,但我可以找到我的错误,为什么无法检索帖子数据。 将不胜感激任何帮助或提示。谢谢。

1 个答案:

答案 0 :(得分:-1)

try this...

JSONObject jsonObject = new JSONObject();
jsonObject.put("regid", "blablabla");
String json = jsonObject.toString();

MultipartEntityBuilder multiPart = MultipartEntityBuilder.create();

multiPart.addTextBody("regid",json);
or 
multiPart.addTextBody("regid","blablabla");

httpPost.setEntity(multiPart.build());