黑马程序员技术交流社区

标题: 通过字符流往文件中写数据。 [打印本页]

作者: 钟志军zzj    时间: 2015-7-13 22:33
标题: 通过字符流往文件中写数据。
package cn.itcast_01;

import java.io.FileOutputStream;
import java.io.IOException;

/*
* 通过字符流往文件中写数据。
*
* 字节输出流操作步骤:
* A:创建字节输出流对象
* B:调用写数据的方法
* C:释放资源
*/
public class FileOutputStreamDemo {
        public static void main(String[] args) throws IOException {
                // 创建字节输出流对象
                // FileOutputStream fos = new FileOutputStream("a.txt",true);
                FileOutputStream fos = new FileOutputStream("a.txt");

                // 调用写数据的方法
                // 写入一个字节
                // fos.write(97);
                // fos.write(98);
                // fos.write(99);
                // fos.flush();
                // 写一个字节数组
                // byte[] bys = { 97, 98, 99, 100, 101 };
                byte[] bys = "abcde".getBytes();
                // fos.write(bys);
                // 写一个字节数组的一部分
                fos.write(bys,0,2);
               
                // 释放资源
                fos.close();
        }
}





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2