我正在尝试读取文件,并且一直收到错误信息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();
}