studio - Lectura de un archivo json en Android
obtener valor de json android (2)
Tengo el siguiente archivo json. Quiero saber dónde debo colocar el archivo json en mi proyecto y cómo leerlo y almacenarlo.
{
"aakash": [
[ 0.070020,0.400684],
[ 0.134198,0.515837],
[ 0.393489,0.731809],
[ 0.281616,0.739490]
],
"anuj": [
[ 1287.836667,-22.104523],
[ -22.104523,308.689613],
[ 775.712801,-13.047385],
[ -13.047385,200.067743]
]
}
Prueba esto:
JSONObject obj = new JSONObject(yourjsonstring);
Pon ese archivo en activos .
Para el proyecto creado en el proyecto Android Studio, debe crear la carpeta de activos debajo de la carpeta principal.
Lea ese archivo como:
public String loadJSONFromAsset(Context context) {
String json = null;
try {
InputStream is = context.getAssets().open("file_name.json");
int size = is.available();
byte[] buffer = new byte[size];
is.read(buffer);
is.close();
json = new String(buffer, "UTF-8");
} catch (IOException ex) {
ex.printStackTrace();
return null;
}
return json;
}
y luego simplemente puede leer esta string
devuelta por esta función como
JSONObject obj = new JSONObject(json_return_by_the_function);
Para obtener más detalles sobre JSON, consulte http://www.vogella.com/articles/AndroidJSON/article.html
Espero que consigas lo que quieres.