第十八章 IO流

1. IO流基本概念

1.1 什么是IO

image.png

需注意IO是建立在内存与硬盘之间的

1.2 IO流的分类

  • 一种方式是按照流的方向进行分类:

以内存作为参照物,往内存中去,叫做输入(Input)。或者叫做读(Read);从内存中出来,叫做输出(Output)。或者叫做写(Write)。

  • 另一种方式是按照读取数据方式不同进行分类:

有的流是按照字节的方式读取数据,一次读取1个字节byte,等同于一次读取8个二进制位。这种流是万能的,什么类型的文件都可以读取。包括:文本文件,图片,声音文件,视频文件等….

  • 综上所述:流的分类

输入流、输出流、字节流、字符流

  • java中所有的流都是在:java.io.*
  1. 假设文件file1.txt,采用字节流的话是这样读的:
  2. a中国bc张三fe
  3. 第一次读:一个字节,正好读到'a'
  4. 第二次读:一个字节,正好读到'中'字符的一半。
  5. 第三次读:一个字节,正好读到'中'字符的另外一半。
  6. 有的流是按照字符的方式读取数据的,一次读取一个字符,这种流是为了方便读取
  7. 普通文本文件而存在的,这种流不能读取:图片、声音、视频等文件。只能读取纯
  8. 文本文件,连word文件都无法读取。
  9. 假设文件file1.txt,采用字符流的话是这样读的:
  10. a中国bc张三fe
  11. 第一次读:'a'字符('a'字符在windows系统中占用1个字节。)
  12. 第二次读:'中'字符('中'字符在windows系统中占用2个字节。)

1.2.1 java IO流的四大家族

  1. - 四大家族的首领:

java.io.InputStream 字节输入流
java.io.OutputStream 字节输出流
java.io.Reader 字符输入流
java.io.Writer 字符输出流

  1. - 四大家族的首领都是**抽象类**。(abstract class)

所有的流都实现了:java.io.Closeable接口(可关闭的,有close()方法)
流毕竟是一个管道,这个是内存和硬盘之间的通道,用完之后一定要关闭,不然会耗费(占用)很多资源。养成好习惯,用完流一定要关闭。
所有的输出流都实现了:java.io.Flushable接口(可刷新的,有flush()方法)
养成一个好习惯,输出流在最终输出之后,一定要记得flush(),刷新一下。这个刷新表示将通道/管道当中剩余未输出的数据强行输出完(清空管道!)刷新的作用就是清空管道。

注意: 如果没有flush()可能会导致丢失数据。 在java中只要“类名”以Stream结尾的都是字节流。以“Reader/Writer”结尾的都是字符流。

1.2.2 java.io包下需要掌握的16个流

文件专属:
java.io.FileInputStream(掌握) 万能的,任何类型的文件都可以采用这个流来读。
java.io.FileOutputStream(掌握)
java.io.FileReader
java.io.FileWriter

转换流:(将字节流转换成字符流)
java.io.InputStreamReader
java.io.OutputStreamWriter

缓冲流专属:
java.io.BufferedReader
java.io.BufferedWriter
java.io.BufferedInputStream
java.io.BufferedOutputStream

数据流专属:
java.io.DataInputStream
java.io.DataOutputStream

标准输出流:
java.io.PrintWriter
java.io.PrintStream(掌握)

对象专属流:
java.io.ObjectInputStream(掌握)
java.io.ObjectOutputStream(掌握)

2. FileInputStream

2.1 基本格式

  1. public class FileInputStreamTest04 {
  2. public static void main(String[] args) {
  3. FileInputStream fis = null;
  4. try {
  5. fis = new FileInputStream("chapter23/src/tempfile3");
  6. // 准备一个byte数组
  7. byte[] bytes = new byte[4];
  8. /*while(true){
  9. int readCount = fis.read(bytes);
  10. if(readCount == -1){
  11. break;
  12. }
  13. // 把byte数组转换成字符串,读到多少个转换多少个。
  14. System.out.print(new String(bytes, 0, readCount));
  15. }*/
  16. int readCount = 0;
  17. while((readCount = fis.read(bytes)) != -1) {
  18. System.out.print(new String(bytes, 0, readCount));
  19. }
  20. } catch (FileNotFoundException e) {
  21. e.printStackTrace();
  22. } catch (IOException e) {
  23. e.printStackTrace();
  24. } finally {
  25. if (fis != null) {
  26. try {
  27. fis.close();
  28. } catch (IOException e) {
  29. e.printStackTrace();
  30. }
  31. }
  32. }
  33. }
  34. }

需注意idea的当前路径是project目录,相对路径是建立在project目录下的

2.2 FileinputStream其他方法

  1. /*
  2. FileInputStream类的其它常用方法:
  3. int available():返回流当中剩余的没有读到的字节数量
  4. long skip(long n):跳过几个字节不读。
  5. */
  6. public class FileInputStreamTest05 {
  7. public static void main(String[] args) {
  8. FileInputStream fis = null;
  9. try {
  10. fis = new FileInputStream("tempfile");
  11. System.out.println("总字节数量:" + fis.available());
  12. // 读1个字节
  13. //int readByte = fis.read();
  14. // 还剩下可以读的字节数量是:5
  15. //System.out.println("剩下多少个字节没有读:" + fis.available());
  16. // 这个方法有什么用?
  17. //byte[] bytes = new byte[fis.available()]; // 这种方式不太适合太大的文件,因为byte[]数组不能太大。
  18. // 不需要循环了。
  19. // 直接读一次就行了。
  20. //int readCount = fis.read(bytes); // 6
  21. //System.out.println(new String(bytes)); // abcdef
  22. // skip跳过几个字节不读取,这个方法也可能以后会用!
  23. fis.skip(3);
  24. System.out.println(fis.read()); //100
  25. } catch (FileNotFoundException e) {
  26. e.printStackTrace();
  27. } catch (IOException e) {
  28. e.printStackTrace();
  29. } finally {
  30. if (fis != null) {
  31. try {
  32. fis.close();
  33. } catch (IOException e) {
  34. e.printStackTrace();
  35. }
  36. }
  37. }
  38. }
  39. }

3. FileOutputStream

  1. public class FileOutputStreamTest01 {
  2. public static void main(String[] args) {
  3. FileOutputStream fos = null;
  4. try {
  5. // myfile文件不存在的时候会自动新建!
  6. // 这种方式谨慎使用,这种方式会先将原文件清空,然后重新写入。
  7. //fos = new FileOutputStream("myfile");
  8. //fos = new FileOutputStream("chapter23/src/tempfile3");
  9. // 以追加的方式在文件末尾写入。不会清空原文件内容。
  10. fos = new FileOutputStream("chapter23/src/tempfile3", true);
  11. // 开始写。
  12. byte[] bytes = {97, 98, 99, 100};
  13. // 将byte数组全部写出!
  14. fos.write(bytes); // abcd
  15. // 将byte数组的一部分写出!
  16. fos.write(bytes, 0, 2); // 再写出ab
  17. // 字符串
  18. String s = "我是一个中国人,我骄傲!!!";
  19. // 将字符串转换成byte数组。
  20. byte[] bs = s.getBytes();
  21. // 写
  22. fos.write(bs);
  23. // 写完之后,最后一定要刷新
  24. fos.flush();
  25. } catch (FileNotFoundException e) {
  26. e.printStackTrace();
  27. } catch (IOException e) {
  28. e.printStackTrace();
  29. } finally {
  30. if (fos != null) {
  31. try {
  32. fos.close();
  33. } catch (IOException e) {
  34. e.printStackTrace();
  35. }
  36. }
  37. }
  38. }
  39. }

3.1 文件复制

3.1.1 文件复制过程

image.png

3.1.2 代码分析

  1. /*
  2. 使用FileInputStream + FileOutputStream完成文件的拷贝。
  3. 拷贝的过程应该是一边读,一边写。
  4. 使用以上的字节流拷贝文件的时候,文件类型随意,万能的。什么样的文件都能拷贝。
  5. */
  6. public class Copy01 {
  7. public static void main(String[] args) {
  8. FileInputStream fis = null;
  9. FileOutputStream fos = null;
  10. try {
  11. // 创建一个输入流对象
  12. fis = new FileInputStream("D:\\course\\02-JavaSE\\video\\chapter01\\动力节点-JavaSE-杜聚宾-001-文件扩展名的显示.avi");
  13. // 创建一个输出流对象
  14. fos = new FileOutputStream("C:\\动力节点-JavaSE-杜聚宾-001-文件扩展名的显示.avi");
  15. // 最核心的:一边读,一边写
  16. byte[] bytes = new byte[1024 * 1024]; // 1MB(一次最多拷贝1MB。)
  17. int readCount = 0;
  18. while((readCount = fis.read(bytes)) != -1) {
  19. fos.write(bytes, 0, readCount);
  20. }
  21. // 刷新,输出流最后要刷新
  22. fos.flush();
  23. } catch (FileNotFoundException e) {
  24. e.printStackTrace();
  25. } catch (IOException e) {
  26. e.printStackTrace();
  27. } finally {
  28. // 分开try,不要一起try。
  29. // 一起try的时候,其中一个出现异常,可能会影响到另一个流的关闭。
  30. if (fos != null) {
  31. try {
  32. fos.close();
  33. } catch (IOException e) {
  34. e.printStackTrace();
  35. }
  36. }
  37. if (fis != null) {
  38. try {
  39. fis.close();
  40. } catch (IOException e) {
  41. e.printStackTrace();
  42. }
  43. }
  44. }
  45. }
  46. }

4. FileReader

  1. /*
  2. FileReader:
  3. 文件字符输入流,只能读取普通文本。
  4. 读取文本内容时,比较方便,快捷。
  5. */
  6. public class FileReaderTest {
  7. public static void main(String[] args) {
  8. FileReader reader = null;
  9. try {
  10. // 创建文件字符输入流
  11. reader = new FileReader("tempfile");
  12. //准备一个char数组
  13. char[] chars = new char[4];
  14. // 往char数组中读
  15. reader.read(chars); // 按照字符的方式读取:第一次e,第二次f,第三次 风....
  16. for(char c : chars) {
  17. System.out.println(c);
  18. }
  19. /*// 开始读
  20. char[] chars = new char[4]; // 一次读取4个字符
  21. int readCount = 0;
  22. while((readCount = reader.read(chars)) != -1) {
  23. System.out.print(new String(chars,0,readCount));
  24. }*/
  25. } catch (FileNotFoundException e) {
  26. e.printStackTrace();
  27. } catch (IOException e) {
  28. e.printStackTrace();
  29. } finally {
  30. if (reader != null) {
  31. try {
  32. reader.close();
  33. } catch (IOException e) {
  34. e.printStackTrace();
  35. }
  36. }
  37. }
  38. }
  39. }

5. FileWriter

  1. /*
  2. FileWriter:
  3. 文件字符输出流。写。
  4. 只能输出普通文本。
  5. */
  6. public class FileWriterTest {
  7. public static void main(String[] args) {
  8. FileWriter out = null;
  9. try {
  10. // 创建文件字符输出流对象
  11. //out = new FileWriter("file");
  12. out = new FileWriter("file", true);
  13. // 开始写。
  14. char[] chars = {'我','是','中','国','人'};
  15. out.write(chars);
  16. out.write(chars, 2, 3);
  17. out.write("我是一名java软件工程师!");
  18. // 写出一个换行符。
  19. out.write("\n");
  20. out.write("hello world!");
  21. // 刷新
  22. out.flush();
  23. } catch (IOException e) {
  24. e.printStackTrace();
  25. } finally {
  26. if (out != null) {
  27. try {
  28. out.close();
  29. } catch (IOException e) {
  30. e.printStackTrace();
  31. }
  32. }
  33. }
  34. }
  35. }

5.1 复制普通文本文件

  1. /*
  2. 使用FileReader FileWriter进行拷贝的话,只能拷贝“普通文本”文件。
  3. */
  4. public class Copy02 {
  5. public static void main(String[] args) {
  6. FileReader in = null;
  7. FileWriter out = null;
  8. try {
  9. // 读
  10. in = new FileReader("chapter23/src/com/bjpowernode/java/io/Copy02.java");
  11. // 写
  12. out = new FileWriter("Copy02.java");
  13. // 一边读一边写:
  14. char[] chars = new char[1024 * 512]; // 1MB
  15. int readCount = 0;
  16. while((readCount = in.read(chars)) != -1){
  17. out.write(chars, 0, readCount);
  18. }
  19. // 刷新
  20. out.flush();
  21. } catch (FileNotFoundException e) {
  22. e.printStackTrace();
  23. } catch (IOException e) {
  24. e.printStackTrace();
  25. } finally {
  26. if (in != null) {
  27. try {
  28. in.close();
  29. } catch (IOException e) {
  30. e.printStackTrace();
  31. }
  32. }
  33. if (out != null) {
  34. try {
  35. out.close();
  36. } catch (IOException e) {
  37. e.printStackTrace();
  38. }
  39. }
  40. }
  41. }
  42. }

6. BufferedReader

  1. /*
  2. BufferedReader:
  3. 带有缓冲区的字符输入流。
  4. 使用这个流的时候不需要自定义char数组,或者说不需要自定义byte数组。自带缓冲。
  5. */
  6. public class BufferedReaderTest01 {
  7. public static void main(String[] args) throws Exception{
  8. FileReader reader = new FileReader("Copy02.java");
  9. // 当一个流的构造方法中需要一个流的时候,这个被传进来的流叫做:节点流。
  10. // 外部负责包装的这个流,叫做:包装流,还有一个名字叫做:处理流。
  11. // 像当前这个程序来说:FileReader就是一个节点流。BufferedReader就是包装流/处理流。
  12. BufferedReader br = new BufferedReader(reader);
  13. // 读一行
  14. /*String firstLine = br.readLine();
  15. System.out.println(firstLine);
  16. String secondLine = br.readLine();
  17. System.out.println(secondLine);
  18. String line3 = br.readLine();
  19. System.out.println(line3);*/
  20. // br.readLine()方法读取一个文本行,但不带换行符。
  21. String s = null;
  22. while((s = br.readLine()) != null){
  23. System.out.print(s);
  24. }
  25. // 关闭流
  26. // 对于包装流来说,只需要关闭最外层流就行,里面的节点流会自动关闭。(可以看源代码。)
  27. br.close();
  28. }
  29. }

7. InputStreamReader

  1. /*
  2. 转换流:InputStreamReader
  3. */
  4. public class BufferedReaderTest02 {
  5. public static void main(String[] args) throws Exception{
  6. /*// 字节流
  7. FileInputStream in = new FileInputStream("Copy02.java");
  8. // 通过转换流转换(InputStreamReader将字节流转换成字符流。)
  9. // in是节点流。reader是包装流。
  10. InputStreamReader reader = new InputStreamReader(in);
  11. // 这个构造方法只能传一个字符流。不能传字节流。
  12. // reader是节点流。br是包装流。
  13. BufferedReader br = new BufferedReader(reader);*/
  14. // 合并
  15. BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream("Copy02.java")));
  16. String line = null;
  17. while((line = br.readLine()) != null){
  18. System.out.println(line);
  19. }
  20. // 关闭最外层
  21. br.close();
  22. }
  23. }

8. BufferedWriter

  1. /*
  2. BufferedWriter:带有缓冲的字符输出流。
  3. OutputStreamWriter:转换流
  4. */
  5. public class BufferedWriterTest {
  6. public static void main(String[] args) throws Exception{
  7. // 带有缓冲区的字符输出流
  8. //BufferedWriter out = new BufferedWriter(new FileWriter("copy"));
  9. BufferedWriter out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream("copy", true)));
  10. // 开始写。
  11. out.write("hello world!");
  12. out.write("\n");
  13. out.write("hello kitty!");
  14. // 刷新
  15. out.flush();
  16. // 关闭最外层
  17. out.close();
  18. }
  19. }

9. DataInputStream

  1. /*
  2. DataInputStream:数据字节输入流。
  3. DataOutputStream写的文件,只能使用DataInputStream去读。并且读的时候你需要提前知道写入的顺序。
  4. 读的顺序需要和写的顺序一致。才可以正常取出数据。
  5. */
  6. public class DataInputStreamTest01 {
  7. public static void main(String[] args) throws Exception{
  8. DataInputStream dis = new DataInputStream(new FileInputStream("data"));
  9. // 开始读
  10. byte b = dis.readByte();
  11. short s = dis.readShort();
  12. int i = dis.readInt();
  13. long l = dis.readLong();
  14. float f = dis.readFloat();
  15. double d = dis.readDouble();
  16. boolean sex = dis.readBoolean();
  17. char c = dis.readChar();
  18. System.out.println(b);
  19. System.out.println(s);
  20. System.out.println(i + 1000);
  21. System.out.println(l);
  22. System.out.println(f);
  23. System.out.println(d);
  24. System.out.println(sex);
  25. System.out.println(c);
  26. dis.close();
  27. }
  28. }

10. DataOutputStream

  1. /*
  2. java.io.DataOutputStream:数据专属的流。
  3. 这个流可以将数据连同数据的类型一并写入文件。
  4. 注意:这个文件不是普通文本文档。(这个文件使用记事本打不开。)
  5. */
  6. public class DataOutputStreamTest {
  7. public static void main(String[] args) throws Exception{
  8. // 创建数据专属的字节输出流
  9. DataOutputStream dos = new DataOutputStream(new FileOutputStream("data"));
  10. // 写数据
  11. byte b = 100;
  12. short s = 200;
  13. int i = 300;
  14. long l = 400L;
  15. float f = 3.0F;
  16. double d = 3.14;
  17. boolean sex = false;
  18. char c = 'a';
  19. // 写
  20. dos.writeByte(b); // 把数据以及数据的类型一并写入到文件当中。
  21. dos.writeShort(s);
  22. dos.writeInt(i);
  23. dos.writeLong(l);
  24. dos.writeFloat(f);
  25. dos.writeDouble(d);
  26. dos.writeBoolean(sex);
  27. dos.writeChar(c);
  28. // 刷新
  29. dos.flush();
  30. // 关闭最外层
  31. dos.close();
  32. }
  33. }

11. PrintStream

  1. /*
  2. java.io.PrintStream:标准的字节输出流。默认输出到控制台。
  3. */
  4. public class PrintStreamTest {
  5. public static void main(String[] args) throws Exception{
  6. // 联合起来写
  7. System.out.println("hello world!");
  8. // 分开写
  9. PrintStream ps = System.out;
  10. ps.println("hello zhangsan");
  11. ps.println("hello lisi");
  12. ps.println("hello wangwu");
  13. // 标准输出流不需要手动close()关闭。
  14. // 可以改变标准输出流的输出方向吗? 可以
  15. /*
  16. // 这些是之前System类使用过的方法和属性。
  17. System.gc();
  18. System.currentTimeMillis();
  19. PrintStream ps2 = System.out;
  20. System.exit(0);
  21. System.arraycopy(....);
  22. */
  23. // 标准输出流不再指向控制台,指向“log”文件。
  24. PrintStream printStream = new PrintStream(new FileOutputStream("log"));
  25. // 修改输出方向,将输出方向修改到"log"文件。
  26. System.setOut(printStream);
  27. // 再输出
  28. System.out.println("hello world");
  29. System.out.println("hello kitty");
  30. System.out.println("hello zhangsan");
  31. }
  32. }

11.1 日志工具

  1. /*
  2. 日志工具
  3. */
  4. public class Logger {
  5. /*
  6. 记录日志的方法。
  7. */
  8. public static void log(String msg) {
  9. try {
  10. // 指向一个日志文件
  11. PrintStream out = new PrintStream(new FileOutputStream("log.txt", true));
  12. // 改变输出方向
  13. System.setOut(out);
  14. // 日期当前时间
  15. Date nowTime = new Date();
  16. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss SSS");
  17. String strTime = sdf.format(nowTime);
  18. System.out.println(strTime + ": " + msg);
  19. } catch (FileNotFoundException e) {
  20. e.printStackTrace();
  21. }
  22. }
  23. }

12. File

12.1 File类概述

  1. - **File类和四大家族没有关系**,所以**File类不能完成文件的读和写**。
  2. - File对象代表什么?
  3. **文件和目录路径名的抽象表示形式**。<br /> C:\Drivers 这是一个File对象<br /> C:\Drivers\Lan\Realtek\Readme.txt 也是File对象。<br /> 一个File对象有可能对应的是目录,也可能是文件。<br /> File只是一个路径名的抽象表示形式。
  1. public class FileTest01 {
  2. public static void main(String[] args) throws Exception {
  3. // 创建一个File对象
  4. File f1 = new File("D:\\file");
  5. // 判断是否存在!
  6. System.out.println(f1.exists());
  7. // 如果D:\file不存在,则以文件的形式创建出来
  8. /*if(!f1.exists()) {
  9. // 以文件形式新建
  10. f1.createNewFile();
  11. }*/
  12. // 如果D:\file不存在,则以目录的形式创建出来
  13. /*if(!f1.exists()) {
  14. // 以目录的形式新建。
  15. f1.mkdir();
  16. }*/
  17. // 可以创建多重目录吗?
  18. File f2 = new File("D:/a/b/c/d/e/f");
  19. /*if(!f2.exists()) {
  20. // 多重目录的形式新建。
  21. f2.mkdirs();
  22. }*/
  23. File f3 = new File("D:\\course\\01-开课\\学习方法.txt");
  24. // 获取文件的父路径
  25. String parentPath = f3.getParent();
  26. System.out.println(parentPath); //D:\course\01-开课
  27. File parentFile = f3.getParentFile();
  28. System.out.println("获取绝对路径:" + parentFile.getAbsolutePath());
  29. File f4 = new File("copy");
  30. System.out.println("绝对路径:" + f4.getAbsolutePath()); // C:\Users\Administrator\IdeaProjects\javase\copy
  31. }
  32. }

12.2 File类其它常用方法

  1. public class FileTest02 {
  2. public static void main(String[] args) {
  3. File f1 = new File("D:\\course\\01-开课\\开学典礼.ppt");
  4. // 获取文件名
  5. System.out.println("文件名:" + f1.getName());
  6. // 判断是否是一个目录
  7. System.out.println(f1.isDirectory()); // false
  8. // 判断是否是一个文件
  9. System.out.println(f1.isFile()); // true
  10. // 获取文件最后一次修改时间
  11. long haoMiao = f1.lastModified(); // 这个毫秒是从1970年到现在的总毫秒数。
  12. // 将总毫秒数转换成日期?????
  13. Date time = new Date(haoMiao);
  14. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss SSS");
  15. String strTime = sdf.format(time);
  16. System.out.println(strTime);
  17. // 获取文件大小
  18. System.out.println(f1.length()); //216064字节。
  19. }
  20. }
  1. /*
  2. File中的listFiles方法。
  3. */
  4. public class FileTest03 {
  5. public static void main(String[] args) {
  6. // File[] listFiles()
  7. // 获取当前目录下所有的子文件。
  8. File f = new File("D:\\course\\01-开课");
  9. File[] files = f.listFiles();
  10. // foreach
  11. for(File file : files){
  12. //System.out.println(file.getAbsolutePath());
  13. System.out.println(file.getName());
  14. }
  15. }
  16. }

13. 序列化和反序列化

13.1 序列化

image.png

1、java.io.NotSerializableException:对象不支持序列化!!!!

2、参与序列化和反序列化的对象,必须实现Serializable接口。

3、注意:通过源代码发现,Serializable接口只是一个标志接口:

  1. public interface Serializable {}

这个接口当中什么代码都没有,那么它起到一个什么作用呢? 起到标识的作用,标志的作用,java虚拟机看到这个类实现了这个接口,可能会对这个类进行特殊待遇,Serializable这个标志接口是给java虚拟机参考的,java虚拟机看到这个接口之后,会为该类自动生成一个序列化版本号。

4、序列化版本号有什么用呢?
java.io.InvalidClassException:com.bjpowernode.java.bean.Student;
local class incompatible:
stream classdesc serialVersionUID = -684255398724514298(十年后),local class serialVersionUID = -3463447116624555755(十年前)
java语言中是采用什么机制来区分类的?
第一:首先通过类名进行比对,如果类名不一样,肯定不是同一个类。
第二:如果类名一样,再怎么进行类的区别?靠序列化版本号进行区分。
小鹏编写了一个类:com.bjpowernode.java.bean.Student implements Serializable,胡浪编写了一个类:com.bjpowernode.java.bean.Student implements Serializable,不同的人编写了同一个类,但“这两个类确实不是同一个类”。这个时候序列化版本就起上作用了。对于java虚拟机来说,java虚拟机是可以区分开这两个类的,因为这两个类都实现了Serializable接口,都有默认的序列化版本号,他们的序列化版本号不一样。所以区分开了。(这是自动生成序列化版本号的好处)

这种自动生成序列化版本号有什么缺陷? 这种自动生成的序列化版本号缺点是:一旦代码确定之后,不能进行后续的修改,因为只要修改,必然会重新编译,此时会生成全新的序列化版本号,这个时候java虚拟机会认为这是一个全新的类。(这样就不好了!)

5、最终结论:
凡是一个类实现了Serializable接口,建议给该类提供一个固定不变的序列化版本号,这样,以后这个类即使代码修改了,但是版本号不变,java虚拟机会认为是同一个类。

  1. public class ObjectOutputStreamTest01 {
  2. public static void main(String[] args) throws Exception{
  3. // 创建java对象
  4. Student s = new Student(1111, "zhangsan");
  5. // 序列化
  6. ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("students"));
  7. // 序列化对象
  8. oos.writeObject(s);
  9. // 刷新
  10. oos.flush();
  11. // 关闭
  12. oos.close();
  13. }
  14. }
  1. /*
  2. 一次序列化多个对象呢?
  3. 可以,可以将对象放到集合当中,序列化集合。
  4. 提示:
  5. 参与序列化的ArrayList集合以及集合中的元素User都需要实现 java.io.Serializable接口。
  6. */
  7. public class ObjectOutputStreamTest02 {
  8. public static void main(String[] args) throws Exception{
  9. List<User> userList = new ArrayList<>();
  10. userList.add(new User(1,"zhangsan"));
  11. userList.add(new User(2, "lisi"));
  12. userList.add(new User(3, "wangwu"));
  13. ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("users"));
  14. // 序列化一个集合,这个集合对象中放了很多其他对象。
  15. oos.writeObject(userList);
  16. oos.flush();
  17. oos.close();
  18. }
  19. }

13.1.1 transient关键字

  1. import java.io.Serializable;
  2. public class User implements Serializable {
  3. private int no;
  4. // transient关键字表示游离的,不参与序列化。
  5. private transient String name; // name不参与序列化操作!
  6. public User() {
  7. }
  8. public User(int no, String name) {
  9. this.no = no;
  10. this.name = name;
  11. }
  12. @Override
  13. public String toString() {
  14. return "User{" +
  15. "no=" + no +
  16. ", name='" + name + '\'' +
  17. '}';
  18. }
  19. public int getNo() {
  20. return no;
  21. }
  22. public void setNo(int no) {
  23. this.no = no;
  24. }
  25. public String getName() {
  26. return name;
  27. }
  28. public void setName(String name) {
  29. this.name = name;
  30. }
  31. }

13.1.2 序列化版本号

  1. import java.io.Serializable;
  2. public class Student implements Serializable {
  3. // IDEA工具自动生成序列化版本号。
  4. //private static final long serialVersionUID = -7998917368642754840L;
  5. // Java虚拟机看到Serializable接口之后,会自动生成一个序列化版本号。
  6. // 这里没有手动写出来,java虚拟机会默认提供这个序列化版本号。
  7. // 建议将序列化版本号手动的写出来。不建议自动生成
  8. private static final long serialVersionUID = 1L; // java虚拟机识别一个类的时候先通过类名,如果类名一致,再通过序列化版本号。
  9. private int no;
  10. //private String name;
  11. // 过了很久,Student这个类源代码改动了。
  12. // 源代码改动之后,需要重新编译,编译之后生成了全新的字节码文件。
  13. // 并且class文件再次运行的时候,java虚拟机生成的序列化版本号也会发生相应的改变。
  14. private int age;
  15. private String email;
  16. private String address;
  17. public Student() {
  18. }
  19. public Student(int no, String name) {
  20. this.no = no;
  21. //this.name = name;
  22. }
  23. public int getNo() {
  24. return no;
  25. }
  26. public void setNo(int no) {
  27. this.no = no;
  28. }
  29. /*public String getName() {
  30. return name;
  31. }*/
  32. /*public void setName(String name) {
  33. this.name = name;
  34. }*/
  35. /*@Override
  36. public String toString() {
  37. return "Student{" +
  38. "no=" + no +
  39. ", name='" + name + '\'' +
  40. '}';
  41. }*/
  42. @Override
  43. public String toString() {
  44. return "Student{" +
  45. "no=" + no +
  46. ", age=" + age +
  47. ", email='" + email + '\'' +
  48. ", address='" + address + '\'' +
  49. '}';
  50. }
  51. }

13.2 反序列化

  1. public class ObjectInputStreamTest01 {
  2. public static void main(String[] args) throws Exception{
  3. ObjectInputStream ois = new ObjectInputStream(new FileInputStream("students"));
  4. // 开始反序列化,读
  5. Object obj = ois.readObject();
  6. // 反序列化回来是一个学生对象,所以会调用学生对象的toString方法。
  7. System.out.println(obj);
  8. ois.close();
  9. }
  10. }
  1. /*
  2. 反序列化集合
  3. */
  4. public class ObjectInputStreamTest02 {
  5. public static void main(String[] args) throws Exception{
  6. ObjectInputStream ois = new ObjectInputStream(new FileInputStream("users"));
  7. //Object obj = ois.readObject();
  8. //System.out.println(obj instanceof List);
  9. List<User> userList = (List<User>)ois.readObject();
  10. for(User user : userList){
  11. System.out.println(user);
  12. }
  13. ois.close();
  14. }
  15. }

14. IO+Properties的联合应用

  1. import java.io.FileReader;
  2. import java.util.Properties;
  3. /*
  4. IO+Properties的联合应用。
  5. 非常好的一个设计理念:
  6. 以后经常改变的数据,可以单独写到一个文件中,使用程序动态读取。
  7. 将来只需要修改这个文件的内容,java代码不需要改动,不需要重新
  8. 编译,服务器也不需要重启。就可以拿到动态的信息。
  9. 类似于以上机制的这种文件被称为配置文件。
  10. 并且当配置文件中的内容格式是:
  11. key1=value
  12. key2=value
  13. 的时候,我们把这种配置文件叫做属性配置文件。
  14. java规范中有要求:属性配置文件建议以.properties结尾,但这不是必须的。
  15. 这种以.properties结尾的文件在java中被称为:属性配置文件。
  16. 其中Properties是专门存放属性配置文件内容的一个类。
  17. */
  18. public class IoPropertiesTest01 {
  19. public static void main(String[] args) throws Exception{
  20. /*
  21. Properties是一个Map集合,key和value都是String类型。
  22. 想将userinfo文件中的数据加载到Properties对象当中。
  23. */
  24. // 新建一个输入流对象
  25. FileReader reader = new FileReader("chapter23/userinfo.properties");
  26. // 新建一个Map集合
  27. Properties pro = new Properties();
  28. // 调用Properties对象的load方法将文件中的数据加载到Map集合中。
  29. pro.load(reader); // 文件中的数据顺着管道加载到Map集合中,其中等号=左边做key,右边做value
  30. // 通过key来获取value呢?
  31. String username = pro.getProperty("username");
  32. System.out.println(username);
  33. String password = pro.getProperty("password");
  34. System.out.println(password);
  35. String data = pro.getProperty("data");
  36. System.out.println(data);
  37. String usernamex = pro.getProperty("usernamex");
  38. System.out.println(usernamex);
  39. }
  40. }

14.1 properties文件书写

  1. - 建议keyvalue之间使用=的方式。
  2. - =左边是key,=右边是value
  3. - 在属性配置文件中井号(#)是注释
  4. - 属性配置文件的key重复的话,value会自动覆盖!
  5. - 最好不要有空格

data = abc

  1. - 不建议使用冒号( : ),所以最好直接用 =