package test; import java.io.FileOutputStream; import java.io.IOException; /** * @author shusheng * @description * @Email shusheng@yiji.com * @date 2018/11/9 14:50 */ public class FileOutputStreamDemo1 { public static void main(String[] args) throws IOException { /** * 创建字节输出流对象 *创建字节输出流对象了做了几件事情: *A:调用系统功能去创建文件 *B:创建 fos 对象 *C:把 fos 对象指向这个文件 */ FileOutputStream fos = new FileOutputStream("fos.txt"); /**写数据*/ fos.write("Hello,shusheng".getBytes()); fos.write("java".getBytes()); /**释放资源,关闭此文件输出流, * 并释放与此流有关的所有系统资源*/ fos.close(); } }