9.Java----IO流

1.png

1.IO流的分类

  • 根据处理数据类型的不同分为:字符流和字节流
  • 根据数据流向不同分为:输入流和输出流


    2.png

2.节点流和处理流

3.jpg

3.常用例子

3.1基本分为4个步骤:

1.创建File对象
2.创建流对象
3.进行读/写操作
4.关闭流对象

//抽象基类         节点流                                   缓冲流(处理流的一种)
//InputStream      FileInputStream(字节流,图片,视频等)       BufferedInputStream
//OutputStream     FileOutputStream                             BufferedOutputStream
//Reader           FileReader(字符流,处理txt等文本文件)       BufferedReader
//Writer           FileWriter                                   BufferedWriter
public class FileTest {
    //FileReader
    @Test
    public void test1() {
        FileReader reader = null;
        try {
            //实例化文件
            File file = new File("./helloworld.txt");
            //创建读入/写入对象
            reader = new FileReader(file);
            //读入/写入
            //int read = reader.read();
            //方式一:
//            int read;
//            while ((read = reader.read()) != -1){
//                System.out.print((char)read);
//            }
            //方式二:
            int len;
            char[] chars = new char[5];
            while ((len = reader.read(chars)) != -1) {
                //len表示读取的字符数,保存在chars数组中
                for (int i = 0; i < len; i++) {
                    System.out.print(chars[i]);
                }
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            //关闭
            try {
                if (reader != null)
                    reader.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }

    }

    //FileWriter
    @Test
    public void test2() {
        FileWriter fw = null; //如果append为true,则在原文件中追加,否则覆盖文件
        try {
            File file = new File("./helloword2.txt");
            fw = new FileWriter(file, false);
            Writer a = fw.append('a');
            fw.write("helloworld2!");
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                if (fw != null)
                    fw.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }

    }

    //复制
    @Test
    public void test3() {
        FileReader fr = null;
        FileWriter fw = null;
        try {
            File file = new File("helloworld.txt");
            File file1 = new File("copy_helloword.txt");

            fr = new FileReader(file);
            fw = new FileWriter(file1);

            char[] chars = new char[1];
            int len;
            while ((len = fr.read(chars)) != -1) {
                System.out.println(chars[0]);
                fw.write(chars, 0, len);
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (fr != null) {
                try {
                    fr.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            if (fw != null) {
                try {
                    fw.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }

    //图片复制 FileOutputWriter,FileInputReader
    @Test
    public void test4() {
        FileInputStream fis = null;
        FileOutputStream fos = null;
        try {
            File src = new File("./pic.png");
            File dest = new File("./pic2.png");

            fis = new FileInputStream(src);
            fos = new FileOutputStream(dest);

            byte[] bytes = new byte[1024];
            int len;

            while ((len = fis.read(bytes)) != -1) {
                fos.write(bytes, 0, len);
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if(fis != null){
                try {
                    fis.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            if(fos != null){
                try {
                    fos.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }

    }

    //使用缓冲流(内部有个有容器,当读取到一次数量的数据时,一次性写入)
    @Test
    public void test5(){
        BufferedInputStream bis = null;
        BufferedOutputStream bos = null;
        FileInputStream fis;
        FileOutputStream fos;
        try {
            File src = new File("./pic.png");
            File dest = new File("./pic3.png");
            //创建节点流
            fis = new FileInputStream(src);
            fos = new FileOutputStream(dest);
            //使用处理流来包裹节点流
            bis = new BufferedInputStream(fis);
            bos = new BufferedOutputStream(fos);
            byte[] bytes = new byte[1024];
            int len;

            while((len = bis.read(bytes)) != -1){
                bos.write(bytes,0,len);
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            //只要关闭外层的流,内层的流会自动关闭
            if(bis !=null){
                try {
                    bis.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            if(bos != null){
                try {
                    bos.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }


    //使用对象流
    @Test
    public void test6(){
        try {
            File file = new File("object.txt");
            //序列化,将对象写入文件中
            //1.类必须实现Serializable接口
            //2.需要一个UID,如果没有的话,运行时会自动生成一个,但是当类改变时,反序列化时会出现错误
            // private static final long serialVersionUID = -6849794470754667710L;
            FileOutputStream fos = new FileOutputStream(file,false);

            ObjectOutputStream oos = new ObjectOutputStream(fos);

            oos.writeObject(new Person("yang",18));
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
    @Test
    public void test7(){
        try {
            File file = new File("./object.txt");
            FileInputStream fis = new FileInputStream(file);
            ObjectInputStream ois = new ObjectInputStream(fis);
            Person person = (Person) ois.readObject();
            System.out.println(person);
        } catch (IOException e) {
            e.printStackTrace();
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        }
    }
}

class Person implements Serializable{
    String name;
    int age;

    @Override
    public String toString() {
        return "Person{" +
                "name='" + name + '\'' +
                ", age=" + age +
                '}';
    }

    public Person(String name, int age) {
        this.name = name;
        this.age = age;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }


}

4.自我总结

要进行IO的操作,首要要确定是要进行读操作还是写操作,读的话就是Input/Reader,写的话就是Output/Writer,其次确定操作的是字符还是字节,字符流的话就是使用Reader,字节流的话就是使用Stream,同时在使用readf()进行读操作时,使用char[] 或 byte[] 数组来存储每一次读入的数据,然后使用write()将char[] 或 byte[]中的数据写入指定文件中。

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

推荐阅读更多精彩内容

  • 五、IO流 1、IO流概述 (1)用来处理设备(硬盘,控制台,内存)间的数据。(2)java中对数据的操作都是通过...
    佘大将军阅读 506评论 0 0
  • tags:io categories:总结 date: 2017-03-28 22:49:50 不仅仅在JAVA领...
    行径行阅读 2,174评论 0 3
  • 一、基础知识:1、JVM、JRE和JDK的区别:JVM(Java Virtual Machine):java虚拟机...
    杀小贼阅读 2,373评论 0 4
  • 《夜静思》 —春节又逢元宵佳节有感 耳冲烟花爆竹声, 游人踏雪赏花灯。 佳节逢春元宵夜, 亲朋贺岁诉衷情。...
    双一悦阅读 172评论 0 1
  • 3月上中旬坚持练习数学题,发现很多的数学问题自己都绕不过来,数学计算容易错,因此以后要多进行计算练习。 完成了“小...
    冰清玉洁志高人杰阅读 277评论 0 8