1,字符缓冲输入流:

image.png
image.png

  1. 输入流的使用范例:

    1. 创建缓冲流:

      1. BufferedReader bos = new BufferedReader(new FileReader("G:\\xxx\\student.txt"));
      1. //将读取的行内容保存;
      2. String line;
      3. //循环读取
      4. while ((line = bos.readLine()) != null){
      5. String[] split = line.split("=");
      6. map.put(split[0],Integer.parseInt(split[1]));
      7. }

2,字符缓冲输出流:

image.png
image.png

  1. 输出流的使用范例: