发布时间:2023-11-12 01:55来源:www.sf1369.com作者:宇宇
首先,数据输入使用的是outputstream流,inputstream是读取数据
步骤:
1. 实例化FileOutputStream对象
2. 往流中写入数据
3. 清空流的缓存
关闭流
public class FileWrite {
public static void main(String[] args) {
FileOutputStream fos = null;
try {
fos = new FileOutputStream(d:\\file_test.txt);
String content = 我的内容;
fos.write(content.getBytes());
fos.flush();
} catch (Exception e) {
e.printStackTrace();
} finally {
if(fos!=null){
try {
fos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}