I have the following data in Json how could I retrieve data from this file
{\"first_name\":\"immi\",\"last_name\":\"Ahmad\",\"contact_no\":\"0333333\",\"dob\":\"
JSONObject userinfo= new JSONObject(result); userinfo.getString("first_name");
Try to Use Gson to simplify it!
Gson