IO流

问题背景

如果我们要存数据,我们可以存在数组里集合里,但是他们都有一个共性,那就是存在内存当中。优点就是我们读取的比较快。缺点就是当我们重新启动项目的时候,这些数据就会消失。 为了对数据进行持久化的保存,就可以把数据存在文件当中,为了解决这个,java为我们提供了IO流。

流(数据流动)

数据流动的方向分为

  • 读数据(输入Input)
  • 写数据(输出Output)

什么叫文件

一种电脑的存储形式

File是一个java.io包中的类

File是在内存中的一个对象<---映射--->硬盘上的文件或文件夹

路径是看创建的对象能否与硬盘中的一个真实的文件产生对应映射关系,编译不会报错,只有当通过文件流去读取文件的内容时才会报错。

系统内硬盘上文件的名字是不区分大小写的。

File类常用API

File file = new File("D:"+ File.separator + "testFile.txt");
System.out.println(file.canRead());
System.out.println(file.canWrite());
System.out.println(file.isDirectory());
System.out.println(file.isHidden());
System.out.println(file.isFile());

什么是文件流

顾名思义 读取文件的信息(in) 将信息写入文件中(out)

按照读取或写入的单位(字节数)大小来区分

字节型文件流(1字节)

​ FileInputStream/FileOutputStream

字符型文件流(2字节--1字符)

​ FileReader/FileWriter

/*
测试FileInputStream
read():从管道一个字节一个字节的读,返回值是Unicode码,其中要注意的是\r\n的字节码是13和10
read(byte[] b):每次从流管道中读取若干个字节,存入数组中,返回值为有效元素个数
available():返回值显示流管道中缓存的字节数
skip(long n):跳过几个字节,再读取(多线程读文件可以利用)
*/
FileInputStream fileInputStream = null;
try {
    File file = new File("D:" + File.separator + "testFile.txt");
    fileInputStream = new FileInputStream(file);
    int available = fileInputStream.available();//显示流管道中有多少缓存字节
    System.out.println(available);
    byte[] b = new byte[5];
    int read = fileInputStream.read(b);
    while (read != -1) {
        String string = new String(b, 0, read);
        System.out.println(string);
        read = fileInputStream.read(b);
    }
    /*int i = fileInputStream.read();//读不到则返回值为-1
            while (i != -1) {
                System.out.println(i);
                i = fileInputStream.read();
            }*/
} catch (FileNotFoundException e) {
    e.printStackTrace();
} catch (IOException e) {
    e.printStackTrace();
}  finally {
    try {
        if (fileInputStream != null) {
            //将流通道关闭
            fileInputStream.close();
        }
    } catch (IOException e) {
        e.printStackTrace();
    }
}
/**
测试FileOutputStream
将String转成byte,调用getBytes()方法
*/
FileOutputStream fos = null;
try {
    fos = new FileOutputStream(new File("D:" + File.separator + "lili.txt"), true);
    String str = "dgergdfgdfgdfg";
    byte[] bytes = str.getBytes();
    fos.write(bytes);
    //fos.write(97);//将b写入到管道中
    fos.flush();//刷新,将管道中的字节推送到File中
} catch (FileNotFoundException e) {
    e.printStackTrace();
} catch (IOException e) {
    e.printStackTrace();
} finally {
    try {
        if (fos != null) {
            fos.close();
        }
    } catch (IOException e) {
        e.printStackTrace();
    }
}
/*
文件的复制
*/
public void copyFile(File file, String path) {
    FileInputStream fis = null;
    FileOutputStream fos = null;
    try {
        fis = new FileInputStream(file);
        fos = new FileOutputStream(new File(path + File.separator + file.getName()));
        byte[] b = new byte[1024];
        int read = fis.read(b);
        while (read != -1) {
            fos.write(b, 0, read);//将文件的有效字节写入
            fos.flush();
            read = fis.read(b);
        }
        System.out.println("复制完成");
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        try {
            if (fis != null) {
                fis.close();
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
        try {
            if (fos != null) {
                fos.close();
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

public static void main(String[] args) {
    new OperationFile().copyFile(new File("D:" + File.separator + "lili.txt"), "G:");
}

/*
加强版
*/
public void copyPlusFile(File file, String newPath) {

    //获取当前File的绝对路径,用拼串的方式获取新的路径的名字
    String oldFilePath = file.getAbsolutePath();
    String newFilePath = newPath + oldFilePath.split(":")[1];
    //创建一个新的文件夹
    File newFile = new File(newFilePath);
    File[] files = file.listFiles();
    if (files != null) {//是一个文件夹
        newFile.mkdir();
        if (files.length != 0) {
            for (File file1 : files) {
                this.copyFile(file1, newPath);
            }
        }
    } else {//是一个文件
        //读取旧的文件和写入新的文件
        FileInputStream fis = null;
        FileOutputStream fos = null;
        try {
            fis = new FileInputStream(oldFilePath);
            fos = new FileOutputStream(newFilePath);
            byte[] b = new byte[1024];
            int count = fis.read(b);//读取的有效字节
            while (count != -1) {
                fos.write(b, 0, count);
                fos.flush();//将流管道元素清空出去
                fis.read(b);
            }
            System.out.println(newFile.getName() + "文件复制完毕");
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                if (fis != null) {
                    fis.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
            try {
                if (fos != null) {
                    fos.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}

字符型文件流

只能操作纯文本文件(文件右键,记事本能打开)

//read(char[] c)
FileWriter fr = new FileReader(file);
String srt = "abc";
char[] c = srt.toCharArray();
FileWriter fw = new FileWriter(file);
fw.write(c);
fw.write(srt);

存储信息的方式(为什么要操作File)

  1. 变量 只能存一份

  2. 数组 存储好多个 数据类型统一

  3. 集合 存储好多个 存储后个数还能改变 泛型----数据类型统一

    以上三个都是Java中的类型==(对象存储在内存中)==

    都存储在内存中,程序执行完毕,Java虚拟机停止的时候,内存空间就被回收了。所以存储的数据都是临时性存储的。

  4. 文件 ==存储好多信息==

    文件是存储在硬盘上的----》永久性保存。数据虽然安全,但是文件毕竟不在内存中,需要通过IO操作文件。

字符集

字母:数字 符号------1字节 8bit

需要将除了字母以外的其他语言进行字符编码--->拆分和组合

拆分和组合的规则--所谓的字符编码

常见的字符编码

  • ASCII
  • ISO-8859-1
  • GB2312 GB18030 GBK BIG(繁体字)
  • Unicode
  • UTF-8

缓冲流

在管道内增加缓冲的数据

让我们使用流读取的文字更加的流畅

BufferedInputStream/BufferOutputStream

BufferedReader/BufferedWriter

BufferedReader
        //每次读取一行
        String value = readLine();
BufferedWriter
        write(String)
         //光标移到下一行
         newLine()

对象流

ObjectInputStream/ObjectOutputStream

对象序列化/反序列化

对象的序列化:将一个完整的对象拆分成字节碎片,记录在文件中

对象的反序列化:将文件记录的对象,反过来组合成一个完整的对象

ObjectOutputStream oos = null;
ObjectInputStream ois = null;
try {
    /*oos = new ObjectOutputStream(new FileOutputStream(new File("D:"+ File.separator + "lili.txt"), true));
            oos.writeObject(new Person("zhangsan", 80));
            oos.flush();*/

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

推荐阅读更多精彩内容