簡體   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