JSONObject jArrayFacebookFriendsData = new JSONObject();
JSONObject jObjectData = new JSONObject();
try {
jObjectData.put("friend_name",name_);
jObjectData.put("friend_id", id_);
jObjectData.put("friend_email", "null");
jObjectData.put("friend_phone", "null");
jArrayFacebookFriendsData.accumulate("friends",jObjectData);
}
catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}