我想讀取一個文件,並且不斷收到一個錯誤,說ENOENT(沒有這樣的文件或目錄)。在Android上閱讀文件
我在我的電腦上創建了.txt文件,然後我想使用它。我試着把文件放在很多不同的地方,資產文件夾,數據/數據/文件,我一直在收到錯誤。有人能幫我嗎?
這是我寫的代碼。
try {
FileInputStream fis = openFileInput("permissions.txt");
DataInputStream dataIO = new DataInputStream(fis);
String strLine = null;
int i =0;
while((strLine = dataIO.readUTF()) != null){
i++;
String[] temp = strLine.split(":");
if(temp[0].contains("String")){
PermissionNames.names[i] = remove(temp[0]);
}
PermissionNames.descriptions[i] = temp[1];
}
dataIO.close();
fis.close();
}catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}