Java导出txt文件
时间: 2023-06-16 09:05:58 浏览: 96
Java导出txt文件的方法
你可以使用 Java 的文件操作 API 来创建和写入文本文件。以下是一个简单的示例,展示如何将字符串写入文本文件:
```java
import java.io.*;
public class ExportTxt {
public static void main(String[] args) {
try {
FileWriter writer = new FileWriter("output.txt");
writer.write("Hello World!");
writer.close();
System.out.println("Successfully wrote to the file.");
} catch (IOException e) {
System.out.println("An error occurred.");
e.printStackTrace();
}
}
}
```
在上面的示例中,我们使用 `FileWriter` 类来创建一个名为 `output.txt` 的文本文件,并将字符串 `"Hello World!"` 写入该文件。如果写入成功,程序将打印 `"Successfully wrote to the file."`。如果出现错误,则程序将打印 `"An error occurred."` 并输出错误信息。
阅读全文