使用FileWriter声明创建一个对象,将几行文本文件写入C:\\hello。
时间: 2023-06-08 21:04:46 浏览: 86
c write file.
好的,这个问题属于技术问题,可以回答。下面是使用FileWriter声明创建一个对象,将几行文本文件写入C:\\hello的示例代码:
```java
import java.io.FileWriter;
import java.io.IOException;
public class FileWriterExample {
public static void main(String[] args) {
String text1 = "Hello, world!\n";
String text2 = "How are you doing today?\n";
String text3 = "I hope you're having a good day.\n";
try (FileWriter writer = new FileWriter("C:\\hello")) {
writer.write(text1);
writer.write(text2);
writer.write(text3);
System.out.println("Successfully wrote to the file.");
} catch (IOException e) {
System.out.println("An error occurred.");
e.printStackTrace();
}
}
}
```
这个程序会在C盘根目录下创建一个名为hello的文本文件,并将三行文本写入其中。注意,在try块中创建FileWriter对象,在try块结束时会自动关闭该对象。如果发生异常,程序会在catch块中处理并输出错误信息。
阅读全文