gpt4 book ai didi

java PrintWriter 无法解析

转载 作者:搜寻专家 更新时间:2023-11-01 02:45:47 27 4
gpt4 key购买 nike

我不知道为什么我在 eclipse 的第 11 行收到消息“无法解决”

import java.io.*;
public class driver {
public static void main(String[] args) {
try {
PrintWriter out = new PrintWriter("output.txt");
}
catch (FileNotFoundException e) {
System.out.print("file not found");
e.printStackTrace();
}
out.print("hello");
out.close();
}

}

好的,现在我有了这个
import java.io.*;
public class driver {
public static void main(String[] args) {
PrintWriter out = null;
try {
out = new PrintWriter("output.txt");
}
catch (FileNotFoundException e) {
System.out.print("file not found");
e.printStackTrace();
}
out.print("hello");
out.close();
}
}

为什么 eclipse 关闭后不创建文件?

最佳答案

申报您的 PrintWriter之前try块所以它的范围不限于 try堵塞。

关于java PrintWriter 无法解析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22547086/

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