我正在尝试读取文件,但一直收到错误提示 ENOENT(没有这样的文件或目录)。
我在我的电脑上制作了 .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();
}