A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 追梦天涯33 中级黑马   /  2015-8-23 22:49  /  251 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Arrays;

/*
* 字节输出流:
*         public abstract void write(int b) throws IOException  一次一个字节
*  public void write(byte[] b) throws IOException 一次一个字节数组
*  public void write(byte[] b,int off,  int len)  throws IOException  一次一个字节数组的一部分
*/
public class Demo02_OutputStream {
//字节流输出的相关知识!
        public static void main(String[] args) throws IOException {
               
                //创建流对象
                FileOutputStream fos = new FileOutputStream("a.txt");
                //写出
                byte[] bytes = new byte[]{97,98,99,100};
//                fos.write(bytes);
                fos.write(bytes, 0, 3);
               
                fos.write('z');
                fos.write(97);
//                fos.write('一');
               
                String s = "abcd";
                byte[] bytes2 = s.getBytes();
                fos.write(bytes2);
               
                String s2 = "中";
                byte[] bytes3 = s2.getBytes();
                System.out.println(Arrays.toString(bytes3));
                fos.write(bytes3);
               
                //关闭流
                fos.close();
        }

}

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马