gpt4 book ai didi

java - 编译错误 FileNotFound

转载 作者:行者123 更新时间:2023-11-30 03:47:32 25 4
gpt4 key购买 nike

每当我编译代码时,它都会显示此错误。这是一个简单的java代码来复制文件。我已将文本文件保存在 src 和工作区中。我通过提供 txt 文件的目录尝试了两种方法,但出现了相同的错误:

Exception in thread "main" java.io.FileNotFoundException:
src\input.txt (The system cannot find the path specified)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.<init>(Unknown Source)
at java.io.FileInputStream.<init>(Unknown Source)
at CopyFile.main(CopyFile.java:15)

这是代码:

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;

public class CopyFile {

public static void main(String [] args) throws IOException{
FileInputStream in = null;
FileOutputStream out = null;

try
{
in = new FileInputStream(" src/input.txt");
out = new FileOutputStream("src/output.txt");

int c;
while ((c=in.read()) != -1)

{
out.write(c);
}
} finally
{
if (in != null)
{
in.close();
}
else if (out != null)
{
out.close();
}
}

}
}

最佳答案

空间位于:

    in = new FileInputStream(" src/input.txt");

可能会弄乱您的路径,即使该文件确实位于 src/input.txt 中。删除空格,并检查以确保该文件确实位于您认为的位置。

关于java - 编译错误 FileNotFound,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25258092/

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