Eu quero criar um objeto JSON usando String. Exemplo: JSON {"test1":"value1","test2":{"id":0,"name":"testName"}} Para criar o JSON acima, estou usando isso. String message; JSONObject json = new JSONObject(); json.put("test1", "value1"); JSONObject jsonObj = new