gpt4 book ai didi

Java IO 给我一个错误

转载 作者:行者123 更新时间:2023-12-02 00:38:30 25 4
gpt4 key购买 nike

当我运行以下代码时,出现错误。

package practicing.io;

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

public class JavaIO {
public static void main(String[] args) throws IOException {
FileInputStream in = null;
FileOutputStream out = null;
try {
in = new FileInputStream("xanaduout.txt");
out = new FileOutputStream("out.txt");
int c;

while ((c = in.read()) != -1) {
out.write(c);
}

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

这直接取自 Sun 的在线教程。请告诉我出了什么问题。

最佳答案

“xanaduout.txt”存在吗?在您当前的目录中?

如果没有,您始终可以对路径进行硬编码。但这不是一个好的做法:)

无论如何,该错误准确地说明了发生的情况:您正在尝试打开一个文件...而系统找不到它。

关于Java IO 给我一个错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7052416/

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