He seguido las instrucciones de Android para guardar un archivo en el local storage de mi App. String filename = “myfile”; String string = “Hello world!”; FileOutputStream outputStream; try { outputStream = openFileOutput(filename, Context.MODE_PRIVATE); outputStream.write(string.getBytes()); outputStream.close(); Log.i(TAG, “writeToFile OK” ); } catch (Exception e) { e.printStackTrace(); } Luego yo intento ver si mi archivo seRead more