Java tutorial
//package com.java2s; import org.json.JSONException; import org.json.JSONObject; public class Main { public static JSONObject convertStringToJSON(String jsonString) throws JSONException { String secureJSONString = jsonString.substring(jsonString.indexOf("{"), jsonString.lastIndexOf("}") + 1); JSONObject jsonObject = new JSONObject(secureJSONString); return jsonObject; } }