繁体   English   中英

使用Volley Library从服务器发送和获取数据(Android-PHP)

[英]Use Volley Library for send and get data from server (Android - PHP)

我需要将JSONObject发送到服务器并从中获取其他JSONObject。 但我无法将JSONObject发送到服务器,换句话说,我的JSONObject被发送到具有空值的服务器。

Android代码:

JsonObjectRequest request = new JsonObjectRequest(Request.Method.POST,
                getUrl(), new JSONObject("{\"command\":\"get_ad_list\"}"), new Response.Listener<JSONObject>() {
            @Override
            public void onResponse(JSONObject response) {
                Log.e("xxxxxxxxx-result ", response.toString());
            }
        }, new Response.ErrorListener() {
            @Override
            public void onErrorResponse(VolleyError error) {
                Log.e("xxxxxxxxx-error ", error.toString());
            }
        });
        request.setRetryPolicy(new DefaultRetryPolicy(8000,
                DefaultRetryPolicy.DEFAULT_MAX_RETRIES, DefaultRetryPolicy.DEFAULT_BACKOFF_MULT));
        RequestQueue requestQueue = Volley.newRequestQueue(context);
        requestQueue.add(request);

PHP代码:

<?php
    $post_data=@$_POST['myjson'];
    $post_data=json_decode($post_data,true);
    $command=$post_data['command'];
    echo $command; //$command is null!
?>
protected void fetchWebpage() {
    /*
        Json
     */
    final JSONObject json = new JSONObject();
    final JSONObject manJson = new JSONObject();
    try {
        manJson.put("VALUE_1", "HELLO");
        manJson.put("VALUE_2", "AM");
        manJson.put("VALUE_3", "VOLLEY");
        /*
            More values here
        */
        final String j = json.put("UPDATE", manJson).toString();
        // starts here
        final String base_url = "https://google.com";
        // Instantiate the RequestQueue.
        RequestQueue queue = Volley.newRequestQueue(this);
        // Request a string response from the provided URL.
        StringRequest stringRequest = new StringRequest(Request.Method.POST, base_url, new Response.Listener<String>() {
            @Override
            public void onResponse(String response) {
                /*

                    YOUR RESPONSE FROM SERVER IS HERE
                 */
                Log.i(TAG, "received "+response);
                // process your response if return json
                try {
                    JSONObject object = (JSONObject) new JSONTokener(response).nextValue();
                    Sting value_returned_from_server_1 = object.getString("value_you_return_1");
                    Sting value_returned_from_server_2 = object.getString("value_you_return_2");
                    /*
                        MORE VALUES HERE
                     */
                } catch (JSONException e) {
                    /*Show results*/
                    Log.i(TAG, "ERROR JSON "+e.getMessage());
                    return;
                }
            }
        }, new Response.ErrorListener() {
            @Override
            public void onErrorResponse(VolleyError error) {
                //perform operation here after getting error
                /* unsuccessfully result - no internet */
                return;
            }
        }) {
            @Override
            protected Map<String, String> getParams() {
                Map<String, String> params = new HashMap<String, String>();
                //pack message into json
                try {
                    params.put("json", j.toString());
                } catch (Exception e) {
                    //Log.i(TAG,"Map error: Unable to compile post");
                }
                return params;
            }

            @Override
            public Map<String, String> getHeaders() throws AuthFailureError {
                Map<String, String> params = new HashMap<String, String>();
                params.put("Content-Type", "application/x-www-form-urlencoded");
                return params;
            }
        };
        // Add the request to the RequestQueue.
        queue.add(stringRequest);
        // ends here
        return;
    } catch (Exception e) {
        //Log.i(TAG,"ERROR: Unable to get setup settings");
    } // end exception write
    return;
}

尝试这个 :

   JSONObject jsonObject = new JSONObject();
    try {
        jsonObject.put("command","get_ad_list");
    } catch (JSONException e) {
        e.printStackTrace();
    }



     JsonObjectRequest request = new JsonObjectRequest(Request.Method.POST,
            getUrl(), jsonObject, new Response.Listener<JSONObject>() {
        @Override
        public void onResponse(JSONObject response) {
            Log.e("xxxxxxxxx-result ", response.toString());
        }
    }, new Response.ErrorListener() {
        @Override
        public void onErrorResponse(VolleyError error) {
            Log.e("xxxxxxxxx-error ", error.toString());
        }
    });
    request.setRetryPolicy(new DefaultRetryPolicy(8000,
            DefaultRetryPolicy.DEFAULT_MAX_RETRIES, DefaultRetryPolicy.DEFAULT_BACKOFF_MULT));
    RequestQueue requestQueue = Volley.newRequestQueue(context);
    requestQueue.add(request);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM