new NameValuePair("sort_type", "desc") };
String contactsUrl = lastUrl.substring(0, lastUrl.lastIndexOf("/"))
+ "/addr_member.php";
String json = doPost(contactsUrl, params);
JSONTokener jsonTokener = new JSONTokener(json);
Object o = jsonTokener.nextValue();
JSONObject jsonObj = (JSONObject) o;
JSONObject jsonData = jsonObj.getJSONObject("data");
JSONArray jsonContacts = jsonData.getJSONArray("contact");
List<Contact> contacts = new ArrayList<Contact>();
for (int i = 0; i < jsonContacts.length(); i++) {