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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© wang06125439 中级黑马   /  2016-4-28 23:06  /  336 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

package com.heima.test;

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;

public class Demo1_Test {

        /**
        * 字节流读取中文的问题
        * 字节流在读中文的时候有可能会读到半个中文,造成乱码
        * 字节流写出中文的问题
        * 字节流直接操作的字节,所以写出中文必须将字符串转换成字节数组
        * 写出回车换行 write("\r\n".getBytes());
         * @throws IOException
         */
        public static void main(String[] args) throws IOException {
                //demo1();
                FileOutputStream fos = new FileOutputStream("jjj.txt");
                fos.write("流年,等待谁的旧时光".getBytes());
                fos.write("\r\n".getBytes());
        }

        /**
         * @throws FileNotFoundException
         * @throws IOException
         */
        private static void demo1() throws IOException {
                FileInputStream fis = new FileInputStream("yyy.txt");
                int len;
                byte[] arr = new byte[2];
                while((len = fis.read(arr)) != -1) {
                        System.out.print(new String(arr,0,len));
                }
                fis.close();
        }

}

0 个回复

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