У цій відповіді я використовую приклад, опублікований Джастіном Грамменсом .
Про JSON
JSON розшифровується як JavaScript Object Notation. У властивостях JavaScript можна посилатися як на це, так object1.name
і на це object['name'];
. У прикладі зі статті використовується цей біт JSON.
Частини
Вентилятор-об'єкт із електронною поштою як ключовим і foo@bar.com як значення
{
fan:
{
email : 'foo@bar.com'
}
}
Так еквівалент об'єкта був би fan.email;
або fan['email'];
. Обидва мають однакове значення 'foo@bar.com'
.
Про HttpClient Request
Далі - це те, що наш автор використав для оформлення HttpClient Request . Я взагалі не претендую на те, щоб бути експертом, тому якщо хтось має кращий спосіб висловити частину термінології, почувайтеся вільними.
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
структурою даних, перегляньте посилання на карту Java . Коротше кажучи, карта схожа на словник чи хеш.
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-адресою, і я оновив, щоб виправити помилку в коді.