请使用OutputStream实现文件的写操作,将“HELLO JAVA!Come on 2022!”追加写入D盘下demo文件夹中的Hello.txt文件中
时间: 2024-06-13 11:07:40 浏览: 148
以下是使用OutputStream实现文件的写操作的代码:
```java
import java.io.*;
public class WriteToFile {
public static void main(String[] args) {
String filePath = "D:\\demo\\Hello.txt";
String content = "HELLO JAVA! Come on 2022!";
OutputStream os = null;
try {
os = new FileOutputStream(filePath, true);
os.write(content.getBytes());
System.out.println("内容已追加到文件中");
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (os != null) {
os.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
```
其中,`new FileOutputStream(filePath, true)`中的`true`表示以追加的方式打开文件,如果不加这个参数,则默认为覆盖原文件。
阅读全文