“Objeto a JSON String Android” Código de respuesta

cadena a jsonobject android

String json = {"phonetype":"N95","cat":"WP"};

try {

    JSONObject obj = new JSONObject(json);

    Log.d("My App", obj.toString());

} catch (Throwable t) {
    Log.e("My App", "Could not parse malformed JSON: \"" + json + "\"");
}
Blue Bat

Objeto a JSON String Android

Gson gson = new Gson();
String json = gson.toJson(myObj);
Blue Bat

Respuestas similares a “Objeto a JSON String Android”

Preguntas similares a “Objeto a JSON String Android”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código