Java IO流

一、字符流(Reader和Writer):纯文本

1. FileWriterFileReader

public class Test {
    public static void main(String[] args) {
        try (
            FileWriter fileWriter = new FileWriter("C:/Users/PatrickYates/Desktop/hello.txt",true);  // 加true续写,不覆盖前面的内容
            FileReader fileReader = new FileReader("C:/Users/PatrickYates/Desktop/hello.txt");
        ) {
            // 向文件中写入数据
            char array[] = "hello,world!".toCharArray();
            fileWriter.write(array);
            fileWriter.close(); // 这一句必须加,不然fileReader读不出来

            // 从文件中读取数据
            int n = 0;
            while((n = fileReader.read()) != -1){
                System.out.print((char)n);          // InputStreamReader代替FileReader,这样就不会产生乱码:Reader isr=new InputStreamReader(new FileInputStream(fileName),"UTF-8");
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

2. OutputStreamWriterInputStreamReader

FileReader是使用默认码表读取文件, 如果需要使用指定码表读取, 那么可以使用InputStreamReader(字节流,编码表)
FileWriter是使用默认码表写出文件, 如果需要使用指定码表写出, 那么可以使用OutputStreamWriter(字节流,编码表)

3. BufferedWriterBufferedReader

BufferedReader的readLine()方法可以读取一行字符(不包含换行符号)
BufferedWriter的newLine()可以输出一个跨平台的换行符号"\r\n"

public class Test {
    public static void main(String[] args) {
        try (
                BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter("C:/Users/PatrickYates/Desktop/hello.txt",true));  // 加true续写,不覆盖前面的内容
                BufferedReader bufferedReader = new BufferedReader(new FileReader("C:/Users/PatrickYates/Desktop/hello.txt"))
        ) {
            // 向文件中写入数据
            char array[] = "hello,world!".toCharArray();
            bufferedWriter.write(array);

            // 从文件中读取数据
            int n = 0;
            while((n = bufferedReader.read()) != -1){
                System.out.print((char)n);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}
public class Test {
    public static void main(String[] args) {
        try (
                BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter("C:/Users/PatrickYates/Desktop/hello.txt",true));  // 加true续写,不覆盖前面的内容
                BufferedReader bufferedReader = new BufferedReader(new FileReader("C:/Users/PatrickYates/Desktop/hello.txt"))
        ) {
            // 向文件中写入数据
            char array[] = "hello,world!".toCharArray();
            bufferedWriter.write(array);

            // 从文件中读取数据
            String line;
            while((line = bufferedReader.readLine()) != null){
                System.out.println(new String(line));
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

二、字节流(InputStream和OutputStream):非纯文本

InputStream:抽象类,所有InputStream类的父类

FileInputStream
ByteArrayInputStream
ObjectInputStream
BufferedInputStream
DataInputStream

FilterInputStream
PipedInputStream:PipedInputStream和PipedOutputStream一般是结合使用的,这两个类用于在两个线程间进行管道通信,一般在一个线程中执行PipedOutputStream 的write操作,而在另一个线程中执行PipedInputStream的read操作。单独使用PipedInputStream或单独使用PipedOutputStream时没有任何意义的,必须将二者通过connect方法(或在构造函数中传入对应的流)进行连接绑定
SequenceInputStream

1. FileInputStream

用于读取文件内容

public class Test{
    public static void main(String[] args) {
        OutputStream outputStream = null;
        InputStream inputStream = null;
        try {
            // 向文件中写入数据
            byte array[] = "abc".getBytes();
            outputStream = new FileOutputStream("C:/Users/PatrickYates/Desktop/hello.txt");
            outputStream.write(array);

            // 从文件中读取数据
            inputStream = new FileInputStream("C:/Users/PatrickYates/Desktop/hello.txt");
            System.out.println(inputStream.available());
            byte data[] = new byte[inputStream.available()];    // 获取文件的总大小(长度)
            inputStream.read(data);
            System.out.println(new String(data));
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            if(inputStream != null){
                try {
                    inputStream.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }
}

为了较为安全的释放IO流访问的资源,我们花费了将近一半的篇幅,来写释放资源的代码。
所以,在JDK1.7中,我们可以用如下方法来实现:

public class Test{
    public static void main(String[] args) {
        try ( 
            OutputStream outputStream = new FileOutputStream("C:/Users/PatrickYates/Desktop/hello.txt");
            InputStream inputStream = new FileInputStream("C:/Users/PatrickYates/Desktop/hello.txt");
        ) {
            // 向文件中写入数据
            byte array[] = "abc".getBytes();        
            outputStream.write(array);

            // 从文件中读取数据
            System.out.println(inputStream.available());
            byte data[] = new byte[inputStream.available()];    // 获取文件的总大小(长度)
            inputStream.read(data);
            System.out.println(new String(data));
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

将资源的创建放到了try后面的小括号中,省去了资源释放的代码。

2. ByteArrayInputStream

ByteArrayInputStream类本身采用了适配器设计模式,它把字节数组类型转换为输入流类型,使得程序能够对字节数组进行读操作。
把字节串(或叫字节数组)变成输入流的形式
主要是应对流的来源和目的地不一定是文件这种情况,比如说可能是内存,可能是数组。

public class Test{  
    public static void main(String[] args) {  
    byte data[] = "abc".getBytes();  
    InputStream inputStream = new ByteArrayInputStream(data);  

    byte data0[] = new byte[data.length];   
    try {  
        inputStream.read(data0);  
        System.out.println(new String(data0));  
    } catch (IOException e) {  
        e.printStackTrace();  
    } finally {  
        if (inputStream != null) {  
        try {  
            inputStream.close();  
        } catch (IOException e) {  
            e.printStackTrace();  
        }  
        }  
    }  
    }  
}  

字节数组输入流 ByteArrayInputStream
java io系列02之 ByteArrayInputStream的简介,源码分析和示例(包括InputStream)

public class ByteArrayTester {  
    public static void main(String[] args) throws IOException {  
        byte[] buff = new byte[] { 2, 15, 67, -1, -9, 9 };  
        ByteArrayInputStream in = new ByteArrayInputStream(buff, 1, 4);  
        int data = in.read();  
        while (data != -1) {  
            System.out.println(data + " ");  
            data = in.read();  
        }  
        try {
            in.close();// ByteArrayInputSystem 的close()方法实际上不执行任何操作
        } catch (IOException e) {
            e.printStackTrace();
        }
    }  
}  

3. ObjectInputStream

可以用于读取对象,但是读取的对象必须实现 Serializable 接口。objectOutputStream写入文件中的对象是乱码。

public class Test {
    public static void main(String[] args) {
        ObjectOutputStream objectOutputStream = null;
        try {
            objectOutputStream = new ObjectOutputStream(new FileOutputStream("C:/Users/PatrickYates/Desktop/hello.txt"));
            User user1 = new User();
            user1.setNum(2);
            objectOutputStream.writeObject(user1);

            ObjectInputStream objectInputStream = new ObjectInputStream(new FileInputStream("C:/Users/PatrickYates/Desktop/hello.txt"));
            User user2 = (User)objectInputStream.readObject();
            System.out.println(user2.getNum());
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}
class User implements Serializable {
    private static final long serialVersionUID = -8987587467273881932L;
    private int num;
    public int getNum() {
        return num;
    }
    public void setNum(int num) {
        this.num = num;
    }
    @Override
    public String toString() {
        return "User [num=" + num + "]";
    }
}

4. BufferedInputStream

提供了一个缓冲的功能,可以避免大量的磁盘IO。因为像FileInputStream这种,每一次的读取,都是一次磁盘IO。

public class Test{
    public static void main(String[] args) {
        BufferedInputStream bufferedInputStream = null;
        try {
            bufferedInputStream = new BufferedInputStream(new FileInputStream("C:/Users/PatrickYates/Desktop/hello.txt"));
            byte data[] = new byte[bufferedInputStream.available()];
            bufferedInputStream.read(data);
            System.out.println(new String(data));
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            if(bufferedInputStream != null){
                try {
                    bufferedInputStream.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }
}

5. DataInputStream

可以返回一些基本类型或者是String类型,否则的话,只能返回byte类型的数据,利用该类,我们可以更好的操作数据。

public class Test{
    public static void main(String[] args) {
        DataOutputStream dataOutputStream = null;
        try {
            // 向文件中写入数据
            dataOutputStream = new DataOutputStream(new FileOutputStream("C:/Users/PatrickYates/Desktop/hello.txt"));
            dataOutputStream.writeInt(666);

            // 从文件中读取数据
            DataInputStream dataInputStream = new DataInputStream(new FileInputStream("C:/Users/PatrickYates/Desktop/hello.txt"));
            System.out.println(dataInputStream.readInt());
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            if(dataOutputStream != null){
                try {
                    dataOutputStream.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }
}

参考资料

Java IO:常见Java IO流介绍
Java IO流应用实例
设计模式 -- 装饰器模式(主要用于为对象动态的添加功能)
黑马程序员-IO流
Java IO流之字符流

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,009评论 5 474
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,808评论 2 378
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,891评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,283评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,285评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,409评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,809评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,487评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,680评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,499评论 2 318
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,548评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,268评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,815评论 3 304
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,872评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,102评论 1 258
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,683评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,253评论 2 341

推荐阅读更多精彩内容

  • 一、IO流整体结构图 流是一组有顺序的,有起点和终点的字节集合,是对数据传输的总称或抽象。即数据在两设备间的传输称...
    慕凌峰阅读 1,148评论 0 12
  • 本文对 Java 中的 IO 流的概念和操作进行了梳理总结,并给出了对中文乱码问题的解决方法。 1. 什么是流 J...
    Skye_kh阅读 761评论 0 2
  • 导语: 打开简书,看到自己的文章被浏览了五十多次的时候真的很开心,然后发现有几个喜欢一个粉丝的时候,真的是非常开心...
    我是小徐同学阅读 803评论 5 17
  • 摘要 Java I/O是Java技术体系中非常基础的部分,它是学习Java NIO的基础。而深入理解Java NI...
    biakia阅读 7,581评论 7 81
  • Java流操作有关的类或接口: Java流类图结构: 流的概念和作用 流是一组有顺序的,有起点和终点的字节集合,是...
    EphemeralAurora阅读 111评论 0 0