ভোলি ব্যবহার করে JSON ডেটা সহ POST অনুরোধ প্রেরণ করুন


84

আমি একটি নতুন JsonObjectRequestঅনুরোধ পাঠাতে চাই :

  • আমি জেএসএন ডেটা (সার্ভার থেকে প্রতিক্রিয়া) পেতে চাই: ঠিক আছে
  • আমি সার্ভারে এই অনুরোধটি সহ 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 আমি আমার প্রকল্পেও জিএসএন লাইব্রেরি ব্যবহার করি।

উত্তর:


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);
}

4
HashMapআপনার উদাহরণে অপ্রয়োজনীয় ধরনের। JSONObjectমধ্যবর্তী মানচিত্র ছাড়াই আপনি সরাসরি 'টোকেন' রাখতে পারেন ।
ইতাই হংসকি

@ shkschneider আমি jsonBody এ বেমানান প্রকারের ত্রুটি পাচ্ছি। স্ট্রিংকে JSONObject এ রূপান্তর করা দরকার?
কার্তিকেয়ান Ve

4
@ কার্থিকেয়ান আপনি ঠিক বলেছেন, new JSONObject("{\"type\":\"example\"}")পরিবর্তে ব্যবহার করুন - আমার খারাপ।
shkschneider

44

আমি জানি যে এই থ্রেডটি বেশ পুরানো, তবে আমার এই সমস্যাটি ছিল এবং আমি একটি দুর্দান্ত সমাধান নিয়ে এসেছি যা অনেকের পক্ষে খুব কার্যকর হতে পারে কারণ এটি ভলির লাইব্রেরিটিকে অনেক দিক থেকে সংশোধন / প্রসারিত করে।

আমি কিছু সমর্থিত-না-বক্স-ভলির বৈশিষ্ট্যগুলি চিহ্নিত করেছি:

  • এটি JSONObjectRequestনিখুঁত নয়: আপনাকে JSONশেষের দিকে আশা করতে হবে (দেখুন Response.Listener<JSONObject>)।
  • খালি রেসপন্সগুলি সম্পর্কে (কেবলমাত্র 200 টি স্ট্যাটাস সহ)?
  • আমি সরাসরি আমার পোজো চাইলে আমি কী করব 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 প্রেরণের প্রতিক্রিয়া সহ অনুরোধ প্রেরণ করুন to
  2. প্রতিক্রিয়া অনুরোধ পাঠানোর জন্য POJO / POJO এ পার্স করা হয়েছে
  3. প্রতিক্রিয়া অনুরোধ POJO / স্ট্রিং পাঠানোর জন্য পার্স করা
  4. POJO (GET) এ পার্স করা প্রতিক্রিয়াটির অনুরোধ
  5. POJO (GET) / শিরোনামগুলিতে ম্যানুয়ালি সেট করা প্রতিক্রিয়ার অনুরোধ
  6. কোনও প্রতিক্রিয়া ছাড়াই অনুরোধ (200 - খালি শরীর) / শিরোনাম ম্যানুয়ালি প্রেরণ করতে / POJO সেট করে
  7. কোনও প্রতিক্রিয়া ছাড়াই অনুরোধ (200 - খালি দেহ) / পাঠানোর জন্য POJO
  8. কোনও সাড়া না দিয়ে অনুরোধ (200 - খালি দেহ) / স্ট্রিং প্রেরণ

অবশ্যই এটি যাতে কাজ করে, আপনার গুগলের জিএসএন লিব থাকতে হবে; শুধু যোগ কর:

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

আপনার নির্ভরতা (বর্তমান সংস্করণ হয় 2.3.1)।


ভাল উত্তর, ভাগ করে নেওয়ার জন্য ধন্যবাদ। আমি শুধু ধরণ পরিবর্তন হবে toBeSentথেকে পরামিতি Objectথেকে Tআরো টাইপ নিরাপত্তার জন্য।
ডিয়েডেরিক

হ্যাঁ, ভাল ধারণা, এডিট করতে নির্দ্বিধায়! এটি এখনও সম্প্রদায়ের স্টাফ: ডি (আমি বর্তমানে মোবাইলে আছি)
লরেন্ট মায়ার

আমিও একই ধরণের কাজ করার চেষ্টা করছি তবে আমি
মণীশ সিঙ্গলা

4
ক্লায়েন্ট সার্ভার যোগাযোগে সমস্ত দৃশ্যের জন্য ভাল একটি স্যুট।
মুকেশ

ভাল উত্তর.আপনি এটির জন্য খুব সুন্দর কিছু টিউটোরিয়াল তৈরি করেন
আলী খাকি

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"/>
    

4
প্রশ্নের উত্তর না। আসল জসন অনুরোধ নয় এবং অনুরোধের বডিটিতে ডেটা প্রেরণ করা হয় না।
রেনাসিয়েনজা

এটি সহায়ক ছিল। tnx
দিয়া

4
এটি একটি পোস্টের অনুরোধ, জেএসএন অনুরোধ নয়। ডাউনভোট একদম প্রশ্নের উত্তর দেয় না।
মার্ক ডিমিলো

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);

}

এটি শরীরে জেএসএন ডেটা হিসাবে প্যারামগুলি যুক্ত করবেন না
হাসিব জুলফিকার

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;
}

4
দয়া করে আপনার প্রশ্নটি পরিষ্কার করুন
অ্যালেক্স ফিলাটোভ

4
@ অ্যালেক্সফিলাতভ কোন প্রশ্ন?
থমাস আইয়ুব
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.