इस जवाब में मैं जस्टिन ग्रामेन्स द्वारा पोस्ट किए गए एक उदाहरण का उपयोग कर रहा हूं ।
JSON के बारे में
JSON का अर्थ जावास्क्रिप्ट ऑब्जेक्ट नोटेशन है। जावास्क्रिप्ट गुणों में इसे object1.name
और इस तरह दोनों को संदर्भित किया जा सकता है object['name'];
। लेख से उदाहरण JSON के इस बिट का उपयोग करता है।
मान के रूप में ईमेल के साथ पार्ट्स ए फैन ऑब्जेक्ट कुंजी और foo@bar.com है
{
fan:
{
email : 'foo@bar.com'
}
}
तो वस्तु समतुल्य होगी fan.email;
या fan['email'];
। दोनों का मूल्य समान होगा 'foo@bar.com'
।
HttpClient अनुरोध के बारे में
निम्नलिखित हमारे लेखक ने HttpClient अनुरोध करने के लिए क्या उपयोग किया है । मैं यह सब करने के लिए एक विशेषज्ञ होने का दावा नहीं करता हूं, अगर किसी के पास शब्दावली को स्वतंत्र महसूस करने का एक बेहतर तरीका है।
public static HttpResponse makeRequest(String path, Map params) throws Exception
{
//instantiates httpclient to make request
DefaultHttpClient httpclient = new DefaultHttpClient();
//url with the post data
HttpPost httpost = new HttpPost(path);
//convert parameters into JSON object
JSONObject holder = getJsonObjectFromMap(params);
//passes the results to a string builder/entity
StringEntity se = new StringEntity(holder.toString());
//sets the post request as the resulting string
httpost.setEntity(se);
//sets a request header so the page receving the request
//will know what to do with it
httpost.setHeader("Accept", "application/json");
httpost.setHeader("Content-type", "application/json");
//Handles what is returned from the page
ResponseHandler responseHandler = new BasicResponseHandler();
return httpclient.execute(httpost, responseHandler);
}
नक्शा
यदि आप Map
डेटा संरचना से परिचित नहीं हैं, तो कृपया जावा मैप संदर्भ देखें । संक्षेप में, एक नक्शा एक शब्दकोश या हैश के समान है।
private static JSONObject getJsonObjectFromMap(Map params) throws JSONException {
//all the passed parameters from the post request
//iterator used to loop through all the parameters
//passed in the post request
Iterator iter = params.entrySet().iterator();
//Stores JSON
JSONObject holder = new JSONObject();
//using the earlier example your first entry would get email
//and the inner while would get the value which would be 'foo@bar.com'
//{ fan: { email : 'foo@bar.com' } }
//While there is another entry
while (iter.hasNext())
{
//gets an entry in the params
Map.Entry pairs = (Map.Entry)iter.next();
//creates a key for Map
String key = (String)pairs.getKey();
//Create a new map
Map m = (Map)pairs.getValue();
//object for storing Json
JSONObject data = new JSONObject();
//gets the value
Iterator iter2 = m.entrySet().iterator();
while (iter2.hasNext())
{
Map.Entry pairs2 = (Map.Entry)iter2.next();
data.put((String)pairs2.getKey(), (String)pairs2.getValue());
}
//puts email and 'foo@bar.com' together in map
holder.put(key, data);
}
return holder;
}
कृपया इस पोस्ट के बारे में उठने वाले किसी भी प्रश्न पर टिप्पणी करने के लिए स्वतंत्र महसूस करें या यदि मैंने कुछ स्पष्ट नहीं किया है या यदि मैंने किसी ऐसी चीज को नहीं छुआ है जो आपके बारे में अभी भी उलझन में है ... आदि जो भी आपके सिर में वास्तव में पॉप करता है।
(अगर जस्टिन ग्रैमेंस ने मंजूरी नहीं दी तो मैं इसे नीचे ले जाऊंगा। लेकिन अगर नहीं तो जस्टिन इसके बारे में शांत होने के लिए धन्यवाद।)
अपडेट करें
मैं कोड का उपयोग करने के तरीके के बारे में एक टिप्पणी प्राप्त करने के लिए खुश हूं और महसूस किया कि रिटर्न प्रकार में एक गलती थी। विधि हस्ताक्षर एक स्ट्रिंग वापस करने के लिए सेट किया गया था, लेकिन इस मामले में यह कुछ भी वापस नहीं कर रहा था। मैंने हस्ताक्षर को HttpResponse में बदल दिया है और आपको इस लिंक पर HttpResponse
का रिस्पॉन्स बॉडी प्राप्त करने के लिए संदर्भित करेगा , पथ चर url है और मैंने कोड में एक गलती को ठीक करने के लिए अद्यतन किया।