वॉली का उपयोग करके JSON डेटा के साथ POST अनुरोध भेजें


84

मैं एक नया भेजना चाहूंगा JsonObjectRequest अनुरोध :

  • मैं JSON डेटा (सर्वर से प्रतिक्रिया) प्राप्त करना चाहता हूं: ठीक है
  • मैं इस अनुरोध के साथ JSON स्वरूपित डेटा सर्वर पर भेजना चाहता हूं

    JsonObjectRequest request = new JsonObjectRequest(
        Request.Method.POST, "myurl.com", null,
        new Response.Listener<JSONObject>() {
            @Override
            public void onResponse(JSONObject response) {
                //...
            }
        },
        new Response.ErrorListener() {
            @Override
            public void onErrorResponse(VolleyError error) {
                //...
            }
        })
        {
            @Override
            protected Map<String,String> getParams() {
                // something to do here ??
                return params;
            }
    
            @Override
            public Map<String, String> getHeaders() throws AuthFailureError {
                // something to do here ??
                return params;
            }
        };
    

PS मैं अपने प्रोजेक्ट में GSON लाइब्रेरी का भी इस्तेमाल करता हूं।

जवाबों:


88

JsonObjectRequestवास्तव JSONObjectमें शरीर के रूप में स्वीकार करता है।

से इस ब्लॉग लेख ,

final String url = "some/url";
final JSONObject jsonBody = new JSONObject("{\"type\":\"example\"}");

new JsonObjectRequest(url, jsonBody, new Response.Listener<JSONObject>() { ... });

यहाँ स्रोत कोड और JavaDoc ( @param jsonRequest) है:

/**
 * Creates a new request.
 * @param method the HTTP method to use
 * @param url URL to fetch the JSON from
 * @param jsonRequest A {@link JSONObject} to post with the request. Null is allowed and
 *   indicates no parameters will be posted along with request.
 * @param listener Listener to receive the JSON response
 * @param errorListener Error listener, or null to ignore errors.
 */
public JsonObjectRequest(int method, String url, JSONObject jsonRequest,
        Listener<JSONObject> listener, ErrorListener errorListener) {
    super(method, url, (jsonRequest == null) ? null : jsonRequest.toString(), listener,
                errorListener);
}

1
HashMapअपने उदाहरण में अनावश्यक की तरह है। आप JSONObjectबिना इंटरमीडिएट के नक्शे में सीधे 'टोकन' डाल सकते हैं ।
इटाई हंस्की

@shkschneider मुझे jsonBody पर असंगत प्रकार की त्रुटि मिल रही है। स्ट्रिंग को JSONObject में बदलने की आवश्यकता है?
कार्तिकेयन Ve

1
@ कार्तिकेयनवी आप सही हैं, new JSONObject("{\"type\":\"example\"}")इसके बजाय उपयोग करें - मेरा बुरा।
श्क्नाइडर

43

मुझे पता है कि यह धागा काफी पुराना है, लेकिन मुझे यह समस्या थी और मैं एक शांत समाधान के साथ आया था जो कई लोगों के लिए उपयोगी हो सकता है क्योंकि यह कई पहलुओं पर वॉली लाइब्रेरी को सही / विस्तारित करता है।

मुझे कुछ समर्थित नहीं आउट-ऑफ-द-बॉक्स वॉली विशेषताएं हैं:

  • यह JSONObjectRequestसही नहीं है: आपको JSONअंत में (देखें Response.Listener<JSONObject>) उम्मीद करनी होगी ।
  • खाली प्रतिक्रियाओं के बारे में क्या है (सिर्फ 200 स्थिति के साथ)?
  • अगर मैं सीधे अपने POJO से क्या करूं तो मुझे क्या करना चाहिए ResponseListener?

मैंने कमोबेश एक बड़ी जेनेरिक क्लास में बहुत सारे समाधानों को संकलित किया, ताकि मेरे द्वारा उद्धृत सभी समस्या का समाधान हो।

  /**
  * Created by laurentmeyer on 25/07/15.
  */
 public class GenericRequest<T> extends JsonRequest<T> {

     private final Gson gson = new Gson();
     private final Class<T> clazz;
     private final Map<String, String> headers;
     // Used for request which do not return anything from the server
     private boolean muteRequest = false;

     /**
      * Basically, this is the constructor which is called by the others.
      * It allows you to send an object of type A to the server and expect a JSON representing a object of type B.
      * The problem with the #JsonObjectRequest is that you expect a JSON at the end.
      * We can do better than that, we can directly receive our POJO.
      * That's what this class does.
      *
      * @param method:        HTTP Method
      * @param classtype:     Classtype to parse the JSON coming from the server
      * @param url:           url to be called
      * @param requestBody:   The body being sent
      * @param listener:      Listener of the request
      * @param errorListener: Error handler of the request
      * @param headers:       Added headers
      */
     private GenericRequest(int method, Class<T> classtype, String url, String requestBody,
                           Response.Listener<T> listener, Response.ErrorListener errorListener, Map<String, String> headers) {
         super(method, url, requestBody, listener,
                 errorListener);
         clazz = classtype;
         this.headers = headers;
         configureRequest();
     }

     /**
      * Method to be called if you want to send some objects to your server via body in JSON of the request (with headers and not muted)
      *
      * @param method:        HTTP Method
      * @param url:           URL to be called
      * @param classtype:     Classtype to parse the JSON returned from the server
      * @param toBeSent:      Object which will be transformed in JSON via Gson and sent to the server
      * @param listener:      Listener of the request
      * @param errorListener: Error handler of the request
      * @param headers:       Added headers
      */
     public GenericRequest(int method, String url, Class<T> classtype, Object toBeSent,
                           Response.Listener<T> listener, Response.ErrorListener errorListener, Map<String, String> headers) {
         this(method, classtype, url, new Gson().toJson(toBeSent), listener,
                 errorListener, headers);
     }

     /**
      * Method to be called if you want to send some objects to your server via body in JSON of the request (without header and not muted)
      *
      * @param method:        HTTP Method
      * @param url:           URL to be called
      * @param classtype:     Classtype to parse the JSON returned from the server
      * @param toBeSent:      Object which will be transformed in JSON via Gson and sent to the server
      * @param listener:      Listener of the request
      * @param errorListener: Error handler of the request
      */
     public GenericRequest(int method, String url, Class<T> classtype, Object toBeSent,
                           Response.Listener<T> listener, Response.ErrorListener errorListener) {
         this(method, classtype, url, new Gson().toJson(toBeSent), listener,
                 errorListener, new HashMap<String, String>());
     }

     /**
      * Method to be called if you want to send something to the server but not with a JSON, just with a defined String (without header and not muted)
      *
      * @param method:        HTTP Method
      * @param url:           URL to be called
      * @param classtype:     Classtype to parse the JSON returned from the server
      * @param requestBody:   String to be sent to the server
      * @param listener:      Listener of the request
      * @param errorListener: Error handler of the request
      */
     public GenericRequest(int method, String url, Class<T> classtype, String requestBody,
                           Response.Listener<T> listener, Response.ErrorListener errorListener) {
         this(method, classtype, url, requestBody, listener,
                 errorListener, new HashMap<String, String>());
     }

     /**
      * Method to be called if you want to GET something from the server and receive the POJO directly after the call (no JSON). (Without header)
      *
      * @param url:           URL to be called
      * @param classtype:     Classtype to parse the JSON returned from the server
      * @param listener:      Listener of the request
      * @param errorListener: Error handler of the request
      */
     public GenericRequest(String url, Class<T> classtype, Response.Listener<T> listener, Response.ErrorListener errorListener) {
         this(Request.Method.GET, url, classtype, "", listener, errorListener);
     }

     /**
      * Method to be called if you want to GET something from the server and receive the POJO directly after the call (no JSON). (With headers)
      *
      * @param url:           URL to be called
      * @param classtype:     Classtype to parse the JSON returned from the server
      * @param listener:      Listener of the request
      * @param errorListener: Error handler of the request
      * @param headers:       Added headers
      */
     public GenericRequest(String url, Class<T> classtype, Response.Listener<T> listener, Response.ErrorListener errorListener, Map<String, String> headers) {
         this(Request.Method.GET, classtype, url, "", listener, errorListener, headers);
     }

     /**
      * Method to be called if you want to send some objects to your server via body in JSON of the request (with headers and muted)
      *
      * @param method:        HTTP Method
      * @param url:           URL to be called
      * @param classtype:     Classtype to parse the JSON returned from the server
      * @param toBeSent:      Object which will be transformed in JSON via Gson and sent to the server
      * @param listener:      Listener of the request
      * @param errorListener: Error handler of the request
      * @param headers:       Added headers
      * @param mute:          Muted (put it to true, to make sense)
      */
     public GenericRequest(int method, String url, Class<T> classtype, Object toBeSent,
                           Response.Listener<T> listener, Response.ErrorListener errorListener, Map<String, String> headers, boolean mute) {
         this(method, classtype, url, new Gson().toJson(toBeSent), listener,
                 errorListener, headers);
         this.muteRequest = mute;
     }

     /**
      * Method to be called if you want to send some objects to your server via body in JSON of the request (without header and muted)
      *
      * @param method:        HTTP Method
      * @param url:           URL to be called
      * @param classtype:     Classtype to parse the JSON returned from the server
      * @param toBeSent:      Object which will be transformed in JSON via Gson and sent to the server
      * @param listener:      Listener of the request
      * @param errorListener: Error handler of the request
      * @param mute:          Muted (put it to true, to make sense)
      */
     public GenericRequest(int method, String url, Class<T> classtype, Object toBeSent,
                           Response.Listener<T> listener, Response.ErrorListener errorListener, boolean mute) {
         this(method, classtype, url, new Gson().toJson(toBeSent), listener,
                 errorListener, new HashMap<String, String>());
         this.muteRequest = mute;

     }

     /**
      * Method to be called if you want to send something to the server but not with a JSON, just with a defined String (without header and not muted)
      *
      * @param method:        HTTP Method
      * @param url:           URL to be called
      * @param classtype:     Classtype to parse the JSON returned from the server
      * @param requestBody:   String to be sent to the server
      * @param listener:      Listener of the request
      * @param errorListener: Error handler of the request
      * @param mute:          Muted (put it to true, to make sense)
      */
     public GenericRequest(int method, String url, Class<T> classtype, String requestBody,
                           Response.Listener<T> listener, Response.ErrorListener errorListener, boolean mute) {
         this(method, classtype, url, requestBody, listener,
                 errorListener, new HashMap<String, String>());
         this.muteRequest = mute;

     }


     @Override
     protected Response<T> parseNetworkResponse(NetworkResponse response) {
         // The magic of the mute request happens here
         if (muteRequest) {
             if (response.statusCode >= 200 && response.statusCode <= 299) {
                 // If the status is correct, we return a success but with a null object, because the server didn't return anything
                 return Response.success(null, HttpHeaderParser.parseCacheHeaders(response));
             }
         } else {
             try {
                 // If it's not muted; we just need to create our POJO from the returned JSON and handle correctly the errors
                 String json = new String(response.data, HttpHeaderParser.parseCharset(response.headers));
                 T parsedObject = gson.fromJson(json, clazz);
                 return Response.success(parsedObject, HttpHeaderParser.parseCacheHeaders(response));
             } catch (UnsupportedEncodingException e) {
                 return Response.error(new ParseError(e));
             } catch (JsonSyntaxException e) {
                 return Response.error(new ParseError(e));
             }
         }
         return null;
     }

     @Override
     public Map<String, String> getHeaders() throws AuthFailureError {
         return headers != null ? headers : super.getHeaders();
     }

     private void configureRequest() {
         // Set retry policy
         // Add headers, for auth for example
         // ...
     }
 }

यह थोड़ा अधिक लग सकता है, लेकिन इन सभी निर्माणकर्ताओं के लिए यह बहुत अच्छा है क्योंकि आपके पास सभी मामले हैं:

(मुख्य कंस्ट्रक्टर का उपयोग सीधे तौर पर करने के लिए नहीं किया गया था, हालांकि यह निश्चित रूप से संभव है)।

  1. POJO / हेडर्स को जवाब के लिए अनुरोध मैन्युअल रूप से सेट / POJO को भेजें
  2. भेजें के लिए POJO / POJO को पार्स की गई प्रतिक्रिया के साथ अनुरोध करें
  3. पीओजेओ / स्ट्रिंग टू सेंड को पार्स की गई प्रतिक्रिया के साथ अनुरोध
  4. POJO को प्राप्त प्रतिक्रिया के साथ अनुरोध (GET)
  5. POJO (GET) / हेडर्स को मैन्युअल रूप से सेट किए गए जवाब के साथ अनुरोध
  6. कोई जवाब नहीं के साथ अनुरोध (200 - खाली शरीर) / हेडर मैन्युअल रूप से सेट / POJO भेजें
  7. कोई प्रतिक्रिया के साथ अनुरोध (200 - खाली शरीर) / POJO भेजें
  8. कोई प्रतिक्रिया के साथ अनुरोध (200 - खाली शरीर) / स्ट्रिंग भेजने के लिए

बेशक, यह काम करने के लिए, आपके पास Google का GSON Lib होना चाहिए; बस जोड़ दो:

compile 'com.google.code.gson:gson:x.y.z'

आपकी निर्भरता के लिए (वर्तमान संस्करण है 2.3.1)।


अच्छा जवाब, साझा करने के लिए धन्यवाद। मैं बस के प्रकार बदल जाएगा toBeSentसे पैरामीटर Objectको Tअधिक प्रकार की सुरक्षा के लिए।
डिडेरिक

हाँ, अच्छा विचार है, इसे संपादित करने के लिए स्वतंत्र महसूस करें! यह सामुदायिक सामान है: D (मैं मोबाइल पर हूँ, वर्तमान में)
लॉरेंट मेयर

मैं भी कुछ ऐसा ही करने की कोशिश कर रहा हूं, लेकिन मैं इसे बनाने से कहीं बेहतर हूं। ....
मनीष सिंगला

1
क्लाइंट सर्वर संचार में सभी परिदृश्यों के लिए अच्छा एक सूट।
मुकेश

अच्छा जवाब। यदि आप इसके लिए कुछ ट्यूटोरियल बनाएं तो यह बहुत अच्छा है
अली खाकी

29
final String URL = "/volley/resource/12";
// Post params to be sent to the server
HashMap<String, String> params = new HashMap<String, String>();
params.put("token", "AbCdEfGh123456");

JsonObjectRequest req = new JsonObjectRequest(URL, new JSONObject(params),
       new Response.Listener<JSONObject>() {
           @Override
           public void onResponse(JSONObject response) {
               try {
                   VolleyLog.v("Response:%n %s", response.toString(4));
               } catch (JSONException e) {
                   e.printStackTrace();
               }
           }
       }, new Response.ErrorListener() {
           @Override
           public void onErrorResponse(VolleyError error) {
               VolleyLog.e("Error: ", error.getMessage());
           }
       });

// add the request object to the queue to be executed
ApplicationController.getInstance().addToRequestQueue(req);

उल्लेख


10
  • RequestQueueकक्षा की एक वस्तु बनाएं ।

    RequestQueue queue = Volley.newRequestQueue(this);
    
  • StringRequestप्रतिक्रिया और त्रुटि श्रोता के साथ बनाएँ ।

     StringRequest sr = new StringRequest(Request.Method.POST,"http://api.someservice.com/post/comment", new Response.Listener<String>() {
        @Override
        public void onResponse(String response) {
            mPostCommentResponse.requestCompleted();
        }
    }, new Response.ErrorListener() {
        @Override
        public void onErrorResponse(VolleyError error) {
            mPostCommentResponse.requestEndedWithError(error);
        }
    }){
        @Override
        protected Map<String,String> getParams(){
            Map<String,String> params = new HashMap<String, String>();
            params.put("user",userAccount.getUsername());
            params.put("pass",userAccount.getPassword());
            params.put("comment", Uri.encode(comment));
            params.put("comment_post_ID",String.valueOf(postId));
            params.put("blogId",String.valueOf(blogId));
    
            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;
        }
    };
    
  • में आपके अनुरोध जोड़े RequestQueue

    queue.add(jsObjRequest);
    
  • PostCommentResponseListenerइंटरफ़ेस बनाएं ताकि आप इसे देख सकें। यह async अनुरोध के लिए एक साधारण प्रतिनिधि है।

    public interface PostCommentResponseListener {
    public void requestStarted();
    public void requestCompleted();
    public void requestEndedWithError(VolleyError error);
    }
    
  • AndroidManifest.xmlफ़ाइल के अंदर इंटरनेट की अनुमति शामिल करें ।

    <uses-permission android:name="android.permission.INTERNET"/>
    

1
सवाल का जवाब नहीं। एक वास्तविक json अनुरोध नहीं है और डेटा अनुरोध निकाय में भेजा नहीं गया है।
Renascienza

यह मददगार था। tnx
दीया जूल

1
यह एक POST डेटा रिक्वेस्ट है, JSON रिक्वेस्ट नहीं। Downvote। इस सवाल का जवाब बिल्कुल नहीं है।
मार्क डिमिलो

4
    final String url = "some/url";

के बजाय:

    final JSONObject jsonBody = "{\"type\":\"example\"}";

आप उपयोग कर सकते हैं:

  JSONObject jsonBody = new JSONObject();
    try {
        jsonBody.put("type", "my type");
    } catch (JSONException e) {
        e.printStackTrace();
    }
new JsonObjectRequest(url, jsonBody, new Response.Listener<JSONObject>() { ... });

1
final Map<String,String> params = new HashMap<String,String>();
        params.put("email", customer.getEmail());
        params.put("password", customer.getPassword());
        String url = Constants.BASE_URL+"login";

doWebRequestPost(url, params);


public void doWebRequestPost(String url, final Map<String,String> json){
        getmDialogListener().showDialog();

    StringRequest post = new StringRequest(Request.Method.POST, url, new Response.Listener<String>() {
        @Override
        public void onResponse(String response) {
            try {
                getmDialogListener().dismissDialog();
                response....

            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }, new Response.ErrorListener() {
        @Override
        public void onErrorResponse(VolleyError error) {
            Log.d(App.TAG,error.toString());
            getmDialogListener().dismissDialog();

        }
    }){
        @Override
        protected Map<String, String> getParams() throws AuthFailureError {
            Map<String,String> map = json;

            return map;
        }
    };
    App.getInstance().getRequestQueue().add(post);

}

यह शरीर में JSON डेटा के रूप में परमेस को नहीं जोड़ता है
हसीब ज़ुल्फ़िकार

1

आप कक्षा की getBody()विधि को ओवरराइड करके भी डेटा भेज सकते हैं JsonObjectRequest। जैसा की नीचे दिखाया गया।

    @Override
    public byte[] getBody()
    {

        JSONObject jsonObject = new JSONObject();
        String body = null;
        try
        {
            jsonObject.put("username", "user123");
            jsonObject.put("password", "Pass123");

            body = jsonObject.toString();
        } catch (JSONException e)
        {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        try
        {
            return body.toString().getBytes("utf-8");
        } catch (UnsupportedEncodingException e)
        {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        return null;
    }

0
protected Map<String, String> getParams() {
   Map<String, String> params = new HashMap<String, String>();

   JSONObject JObj = new JSONObject();

   try {
           JObj.put("Id","1");
           JObj.put("Name", "abc");

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

   params.put("params", JObj.toString());
   // Map.Entry<String,String>
   Log.d("Parameter", params.toString());
   return params;
}

1
कृपया अपना प्रश्न स्पष्ट करें
एलेक्स फिलाटोव

1
@AlexFilatov कौन सा सवाल?
थॉमस अय्यूब
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.