3536373839404142434445
// Create a wrapped JsonObject or JsonArray T json = null; if (input.startsWith(ARRAY_PREFIX)) { json = (T)new JSONArray(input); } else { json = (T)new JSONObject(input); } // Parse the JSONObject return parse(json); } finally {