public static void test2() { //TODO // 请使用FileWriter向文件输出:HelloWorld // 用 try-with-resource 方式处理异常。 }
时间: 2024-05-27 13:14:55 浏览: 83
C/C++Qt 停车场管理系统-数据库
5星 · 资源好评率100%
public static void test2() {
try (FileWriter writer = new FileWriter("output.txt")) {
writer.write("HelloWorld");
} catch (IOException e) {
e.printStackTrace();
}
}
阅读全文