gpt4 book ai didi

java - 文件错误为:- java. io.FileNotFoundException :\files\storetime. txt(系统找不到指定的路径)

转载 作者:行者123 更新时间:2023-12-01 23:06:37 24 4
gpt4 key购买 nike

我正在使用 eclipse 开发 java 桌面应用程序并使用文件,但出现上述错误

我的代码如下,请尝试帮助我如何在 Eclipse 中给出路径,并且也遇到相同的问题从给定任务加载图像

我已将“files”文件夹放在“src”文件夹之外

如何动态给出路径

我的代码很蠢

          public int getTimeId()
{
LOG.info("The File name is :- " + fileName);
LOG.info("The path is :- ");
int count=0;
FileInputStream fileInputStream;
ObjectInputStream objectInputStream;
try
{
fileInputStream=new FileInputStream("/files/storetime.txt");
objectInputStream=new ObjectInputStream(fileInputStream);
while(objectInputStream.readObject()!=null)
{
count++;
}
}
catch(IOException e)
{
System.out.println("Error in file is :- " + e);
} catch (ClassNotFoundException e) {
System.out.println("Error in class not found :- " + e);
}
return count;
}
}

最佳答案

您通过在路径中添加前缀 / 来提供绝对路径。它表示 Unix 文件系统中的root 目录。因此,您必须给出文件相对于当前目录的相对路径。您可以将 files 目录放在项目文件夹的根目录中并使用

fileInputStream=new FileInputStream("files/storetime.txt");

所以,它会被拾取

关于java - 文件错误为:- java. io.FileNotFoundException :\files\storetime. txt(系统找不到指定的路径),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22654041/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com