Ich habe möglicherweise wifi2.txt Datei in meinem Assets Dateiverzeichnis in Android Studio. Ich erhalte jedoch immer eine NULLPointException, wenn ich versuche, darauf zuzugreifen. Mein Code ist unten: (Vielen Dank im Voraus) Wie lese ich eine Textdatei aus Assets in Android Studio?
//CSV FILE READING
File file = null;
try {
FileInputStream is = new FileInputStream(file);
try {
BufferedReader reader = new BufferedReader(new InputStreamReader(getAssets().open("wifi2.txt")));
String line;
Log.e("Reader Stuff",reader.readLine());
while ((line = reader.readLine()) != null) {
Log.e("code",line);
String[] RowData = line.split(",");
LatLng centerXY = new LatLng(Double.valueOf(RowData[1]), Double.valueOf(RowData[2]));
if (RowData.length == 4) {
mMap.addMarker(new MarkerOptions().position(centerXY).title(String.valueOf(RowData[0]) + String.valueOf(RowData[3])).icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_GREEN)));
}
}
} catch (IOException ex) {
ex.printStackTrace();
} finally {
try {
is.close();
} catch (IOException e) {
e.printStackTrace();
}
}
} catch (FileNotFoundException e) {
e.printStackTrace();
}
//Done with CSV File Reading
'new Fileinputstream (null)' aufrufen würde offensichtlich NPE verursachen ... – Selvin
Mögliche Duplikat [Was für eine Nullpointer ist, und wie kann ich es beheben?] (Http: // stackoverflow.com/questions/218384/what-is-a-nullpointerexception-and-how-do-fix-it) – Selvin