我对java很陌生,我还有很多东西要学。我正在尝试将变量中的数据输出到文本文件,但我不确定为什么这不起作用。谁能帮帮我?
if ("Y".equals(output_to_file)) {
System.out.print("You selected Yes");
PrintStream out = null;
try {
out = new PrintStream(new FileOutputStream("filename.txt"));
out.print(first_input);
}
finally {
if (out != null) out.close();
}
}
else System.out.print("You selected No");
“(new FileOutputStream(“filename.txt”))”带有红色下划线,它说:未处理的异常:java.io.FileNotFoundException
谢谢你的帮助!