1、缓冲流

缓冲流,也叫高效流,是对四个基本的FileXxx流的增强,所以也是4个流
字节缓冲流:
BufferedInputStream BufferedOutputStream
字符缓冲流:
BufferedReader Bufferedwriter
基本原理:在创建对象时,会创建一个内置的默认大小的缓冲区数组,通过缓冲区读写,减少系统IO次数,从而提高读写的效率

字节缓冲流:

BufferedInputStream(InputStream In):创建一个新的缓冲输入流
BufferedOutputStream(OutputStream out):创建一个新的缓冲输出流
一次读取一个字节:

  1. public class BufferedDemo {
  2. public static void main(String[] args) throws FileNotFoundException {
  3. BufferedInputStream bis = null;
  4. BufferedOutputStream bos = null;
  5. // 创建流对象
  6. try {
  7. bis = new BufferedInputStream(new FileInputStream("jdk9.exe"));
  8. bos = new BufferedOutputStream(new FileOutputStream("copy.exe"));
  9. // 读写数据
  10. int b;
  11. while ((b = bis.read()) != -1) {
  12. bos.write(b);
  13. }
  14. } catch (IOException e) {
  15. e.printStackTrace();
  16. } finally{
  17. if (bis != null) {
  18. try {
  19. bis.close();
  20. } catch (IOException e) {
  21. e.printStackTrace();
  22. }
  23. }
  24. if (bos != null) {
  25. try {
  26. bos.close();
  27. } catch (IOException e) {
  28. e.printStackTrace();
  29. }
  30. }
  31. }
  32. }
  33. }

一次读取一个字节数组:

  1. public class BufferedDemo {
  2. public static void main(String[] args) throws FileNotFoundException {
  3. BufferedInputStream bis = null;
  4. BufferedOutputStream bos = null;
  5. // 创建流对象
  6. try {
  7. bis = new BufferedInputStream(new FileInputStream("jdk9.exe"));
  8. bos = new BufferedOutputStream(new FileOutputStream("copy.exe"));
  9. // 读写数据
  10. int len;
  11. byte[] bytes = new byte[8*1024];
  12. while ((len = bis.read(bytes)) != -1) {
  13. bos.write(bytes, 0 , len);
  14. }
  15. } catch (IOException e) {
  16. e.printStackTrace();
  17. } finally{
  18. if (bis != null) {
  19. try {
  20. bis.close();
  21. } catch (IOException e) {
  22. e.printStackTrace();
  23. }
  24. }
  25. if (bos != null) {
  26. try {
  27. bos.close();
  28. } catch (IOException e) {
  29. e.printStackTrace();
  30. }
  31. }
  32. }
  33. }
  34. }

字符缓冲流:

BufferedReader(Reader in):创建一个新的缓冲输入流
String readLine():一次读取一行文字
BufferedWriter(Writer out):创建一个新的缓冲输出流
void newLine():写一行行分隔符,由系统属性定义符号

  1. public class BufferedReaderDemo {
  2. public static void main(String[] args) throws IOException {
  3. // 创建流对象
  4. BufferedReader br = new BufferedReader(new FileReader("in.txt"));
  5. // 定义字符串,保存读取的一行文字
  6. String line = null;
  7. // 循环读取,读取到最后返回null
  8. while ((line = br.readLine())!=null) {
  9. System.out.print(line);
  10. System.out.println("------");
  11. }
  12. // 释放资源
  13. br.close();
  14. }
  15. }
  16. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  17. public class BufferedWriterDemo throws IOException {
  18. public static void main(String[] args) throws IOException {
  19. // 创建流对象
  20. BufferedWriter bw = new BufferedWriter(new FileWriter("out.txt"));
  21. for(int i = 0 ; i < 5 ; i++){
  22. // 写出数据
  23. bw.write("HelloWorld!");
  24. bw.newLine();
  25. }
  26. // 释放资源
  27. bw.close();
  28. }
  29. }

2、转换流

字符编码:

按照某种规则,将字符存储到计算机中称为编码
将储存在计算中的二进制数按照某种规则解析显示出来称为解码
编码:字符(看的懂的)==============》字节(看不懂的)
解码:字节(看不懂的)==============》字符(看的懂的)
字符编码就是一套自然语言 的字符与二进制之间的对应规则
编码表:生活中文字和计算机中二进制的对应规则

字符集:

也叫作编码表,是一个系统所支持的所有字符的集合,包括各国家文字,标点符号,图形符号,数字等

常见字符集:

ASCII字符集:
基于拉丁字母的一套电脑编码系统
ISO-8859-1字符集:
拉丁码表,别名Latin-1,用于显示欧洲使用的语言
使用单字节编码,兼容ASCII
GBxxx字符集:
GB就是国标:用于显示中文而设计的一套字符
GB2312:简体中文码表,两个大于127的字符表示一个汉字,大约有7000简体汉字
GBK:最常用的中文码表,是上一个的扩展,双字节编码,收录哟21003个汉字
GB18030:最新的中文码表,共收录70244个,采用多字节编码,每个字由1,2或4个字节组成
Unicode字符集:
为表达任意语言的任意字符而设计,是业界的一种标准,也成为统一码,标准万国码
最多使用4个字节的数字来表达每个字母,符号,或者文字,有utf8,utf16,utf32
UTF-8:最为常用
1、128个US-ASCII字符,只需要一个字节编码
2、拉丁文等字符,需要两个字节编码
3、大部分常用字(含中文),使用三个字节编码
4、其他极少适用Unicode辅助字符,使用四字节编码

编码引出的问题:

在IDEA中,读取项目中的文本文件,由于IDEA的设置,默认为UTF8,但是当读取Windows系统创建(默认为:GBK)的文本文件时,就会出现乱码

InputStreamReader:

是字节流到字符流的桥梁,他读取字节,并使用指定字符集将其解码为字符
InputStreamReader(InputStream in):创建一个使用默认字符集的输入流
InputStreamReader(InputStream in,String charsetName):创建一个指定字符集的输入流

  1. InputStreamReader isr = new InputStreamReader(new FileInputStream("in.txt"));
  2. InputStreamReader isr2 = new InputStreamReader(new FileInputStream("in.txt") , "GBK");

指定编码读取文件:

  1. public class ReaderDemo2 {
  2. public static void main(String[] args) throws IOException {
  3. // 定义文件路径,文件为gbk编码
  4. String FileName = "E:\\file_gbk.txt";
  5. // 创建流对象,默认UTF8编码
  6. InputStreamReader isr = new InputStreamReader(new FileInputStream(FileName)); // utf-8
  7. // 创建流对象,指定GBK编码
  8. InputStreamReader isr2 = new InputStreamReader(new FileInputStream(FileName) , "GBK");
  9. // 定义变量,保存字符
  10. int read;
  11. // 使用默认编码字符流读取,乱码
  12. while ((read = isr.read()) != -1) {
  13. System.out.print((char)read); // ��Һ�
  14. }
  15. isr.close();
  16. // 使用指定编码字符流读取,正常解析
  17. while ((read = isr2.read()) != -1) {
  18. System.out.print((char)read);// 大家好
  19. }
  20. isr2.close();
  21. }
  22. }

OutputStreamWriter:

是字符流到字节流的桥梁,使用指定的字符集将字符编码为字节
OutputStreamWriter(OutputStream out):创建一个使用默认字符集的字符输出流
OutputStreamWriter(OutputStream out,String charsetName):创建一个指定字符集的字符输出流

  1. OutputStreamWriter isr = new OutputStreamWriter(new FileOutputStream("out.txt"));
  2. OutputStreamWriter isr2 = new OutputStreamWriter(new FileOutputStream("out.txt") , "GBK");

指定编码写出数据:

  1. public class OutputDemo {
  2. public static void main(String[] args) throws IOException {
  3. // 定义文件路径
  4. String FileName = "E:\\out.txt";
  5. // 创建流对象,默认UTF8编码
  6. OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream(FileName));
  7. // 写出数据
  8. osw.write("你好"); // 保存为6个字节
  9. osw.close();
  10. // 定义文件路径
  11. String FileName2 = "E:\\out2.txt";
  12. // 创建流对象,指定GBK编码
  13. OutputStreamWriter osw2 = new OutputStreamWriter(new FileOutputStream(FileName2),"GBK");
  14. // 写出数据
  15. osw2.write("你好");// 保存为4个字节
  16. osw2.close();
  17. }
  18. }

将GBK编码文本文件,转为UTF8编码文本文件:

  1. public class TransDemo {
  2. public static void main(String[] args) {
  3. // 1.定义文件路径
  4. String srcFile = "file_gbk.txt";
  5. String destFile = "file_utf8.txt";
  6. // 2.创建流对象
  7. // 2.1 转换输入流,指定GBK编码
  8. InputStreamReader isr = new InputStreamReader(new FileInputStream(srcFile) , "GBK");
  9. // 2.2 转换输出流,默认utf8编码
  10. Output eamWriter osw = new OutputStreamWriter(new FileOutputStream(destFile));
  11. // 3.读写数据
  12. // 3.1 定义数组
  13. char[] cbuf = new char[1024];
  14. // 3.2 定义长度
  15. int len;
  16. // 3.3 循环读取
  17. while ((len = isr.read(cbuf))!=-1) {
  18. // 循环写出
  19. osw.write(cbuf,0,len);
  20. }
  21. // 4.释放资源
  22. osw.close();
  23. isr.close();
  24. }
  25. }

3、序列化流

Java提供一种都对象序列化的机制,用一个字节序列可以表示一个对象,该字节序列包含该对象的数据,对象的类型和对象中存储的属性等信息
反之,将该字节序列从文件中读取出来,重构对象,对他反序列化

OBjectOutputStream:

将Java对象的原始数据类型写出到文件,实现对象的持久化储存
ObjectOutputStream(OutputStream out):序列化输出流
void writerObject(Object obj):将指定对象写出
一个对象想要序列化,必须满足的两个条件:
1、该了必须实现Serializable接口
2、该类的所有属性必须是可序列化的,如果有一个属性不需要可序列化,则该属性必定著名是瞬态的,使用transient关键字修饰

  1. public class Employee implements java.io.Serializable {
  2. public String name;
  3. public String address;
  4. public transient int age; // transient瞬态修饰成员,不会被序列化
  5. public void addressCheck() {
  6. System.out.println("Address check : " + name + " -- " + address);
  7. }
  8. }
  9. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  10. public class SerializeDemo{
  11. public static void main(String [] args) {
  12. Employee e = new Employee();
  13. e.name = "zhangsan";
  14. e.address = "beiqinglu";
  15. e.age = 20;
  16. try {
  17. // 创建序列化流对象
  18. ObjectOutputStream out = new ObjectOutputStream(new FileOutputStream("employee.txt"));
  19. // 写出对象
  20. out.writeObject(e);
  21. // 释放资源
  22. out.close();
  23. fileOut.close();
  24. System.out.println("Serialized data is saved"); // 姓名,地址被序列化,年龄没有被序列化。
  25. } catch(IOException i) {
  26. i.printStackTrace();
  27. }
  28. }
  29. }

ObjectInputStream:

反序列化流,将序列化的原始数据恢复为对象
ObjecInputStream(InputStream out):反序列化输入流
void readObject(Object obj):读取一个对象

  1. public class DeserializeDemo {
  2. public static void main(String [] args) {
  3. Employee e = null;
  4. try {
  5. // 创建反序列化流
  6. FileInputStream fileIn = new FileInputStream("employee.txt");
  7. ObjectInputStream in = new ObjectInputStream(fileIn);
  8. // 读取一个对象
  9. e = (Employee) in.readObject();
  10. // 释放资源
  11. in.close();
  12. fileIn.close();
  13. }catch(IOException i) {
  14. // 捕获其他异常
  15. i.printStackTrace();
  16. return;
  17. }catch(ClassNotFoundException c) {
  18. // 捕获 类找不到 异常
  19. System.out.println("Employee class not found");
  20. c.printStackTrace();
  21. return;
  22. }
  23. // 无异常,直接打印输出
  24. System.out.println("Name: " + e.name); // zhangsan
  25. System.out.println("Address: " + e.address); // beiqinglu
  26. System.out.println("age: " + e.age); // 0
  27. }
  28. }

案例·序列化集合:

1、把若干学生对象,保存到集合中
2、把集合序列化
3、反序列化读取时,只需要读取一次,转化为集合类型
4、遍历集合,打印所有的学生信息

  1. public class SerTest {
  2. public static void main(String[] args) throws Exception {
  3. // 创建 学生对象
  4. Student student = new Student("老王", "laow");
  5. Student student2 = new Student("老张", "laoz");
  6. Student student3 = new Student("老李", "laol");
  7. ArrayList<Student> arrayList = new ArrayList<>();
  8. arrayList.add(student);
  9. arrayList.add(student2);
  10. arrayList.add(student3);
  11. // 序列化操作
  12. // serializ(arrayList);
  13. // 反序列化
  14. ObjectInputStream ois = new ObjectInputStream(new FileInputStream("list.txt"));
  15. // 读取对象,强转为ArrayList类型
  16. ArrayList<Student> list = (ArrayList<Student>)ois.readObject();
  17. for (int i = 0; i < list.size(); i++ ){
  18. Student s = list.get(i);
  19. System.out.println(s.getName()+"--"+ s.getPwd());
  20. }
  21. }
  22. private static void serializ(ArrayList<Student> arrayList) throws Exception {
  23. // 创建 序列化流
  24. ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("list.txt"));
  25. // 写出对象
  26. oos.writeObject(arrayList);
  27. // 释放资源
  28. oos.close();
  29. }
  30. }

4、打印流

字节打印流:PrintStream
字符打印流:PrintWriter
特点:
1、只负责输出数据,不负读取数据
2、永远不会抛出IOException
3、有自己的特有方法
感觉没什么记的

5、Properties集合

1、是一个Map体系的集合类
2、可以保存到流中或者从流中加载
3、属性列表中的每个建及其对象的值都是一个字符串
基本使用:

  1. public class PropertiesDemo01 {
  2. public static void main(String[] args) {
  3. //创建集合对象
  4. // Properties<String,String> prop = new Properties<String,String>(); //错误
  5. Properties prop = new Properties();
  6. //存储元素
  7. prop.put("itfxp001", "林青霞");
  8. prop.put("itfxp002", "张曼玉");
  9. prop.put("itfxp003", "王祖贤");
  10. //遍历集合
  11. Set<Object> keySet = prop.keySet();
  12. for (Object key : keySet) {
  13. Object value = prop.get(key);
  14. System.out.println(key + "," + value);
  15. }
  16. }
  17. }

Object setProperty(Streing key , Steing value):设置集合的键和值。底层调用Hashset方法put
Object getProperty(Streing key):通过键获取值
Set stringPropertynames():从该属性列表中返回一个不可修改的键集,其中键及其对应的值是字符串

  1. public class PropertiesDemo02 {
  2. public static void main(String[] args) {
  3. //创建集合对象
  4. Properties prop = new Properties();
  5. //Object setProperty(String key, String value):设置集合的键和值,都是String类型,底层调用Hashtable方法put
  6. prop.setProperty("itfxp001", "林青霞");
  7. /*
  8. Object setProperty(String key, String value) {
  9. return put(key, value);
  10. }
  11. Object put(Object key, Object value) {
  12. return map.put(key, value);
  13. }
  14. */
  15. prop.setProperty("itfxp002", "张曼玉");
  16. prop.setProperty("itfxp003", "王祖贤");
  17. //String getProperty(String key):使用此属性列表中指定的键搜索属性
  18. // System.out.println(prop.getProperty("itheima001"));
  19. // System.out.println(prop.getProperty("itheima0011"));
  20. // System.out.println(prop);
  21. //Set<String> stringPropertyNames():从该属性列表中返回一个不可修改的键集,其中键及其对应的值是字符串
  22. Set<String> names = prop.stringPropertyNames();
  23. for (String key : names) {
  24. // System.out.println(key);
  25. String value = prop.getProperty(key);
  26. System.out.println(key + "," + value);
  27. }
  28. }
  29. }

Properties和IO流相结合的方法:

void load(InputStream in):从输入字节流读取属性列表(键和元素对)
void load(Reader reader):从输入字符流读取属性列表(键和元素对)
void store(OutputStream out,String comments):将此属性列表(键和元素对)写入此Properties表中,以适合于使用load(inputStream)方法的格式写入输出字符流
void store(Writer writer,String comments):将此属性列表(键和元素对)写入此Properties表中,以适合于使用load(Reader)方法的格式写入输出字符流

  1. public class PropertiesDemo03 {
  2. public static void main(String[] args) throws IOException {
  3. //把集合中的数据保存到文件
  4. // myStore();
  5. //把文件中的数据加载到集合
  6. myLoad();
  7. }
  8. private static void myLoad() throws IOException {
  9. Properties prop = new Properties();
  10. //void load(Reader reader):
  11. FileReader fr = new FileReader("myOtherStream\\fw.txt");
  12. prop.load(fr);
  13. fr.close();
  14. System.out.println(prop);
  15. }
  16. private static void myStore() throws IOException {
  17. Properties prop = new Properties();
  18. prop.setProperty("itfxp001","林青霞");
  19. prop.setProperty("itfxp002","张曼玉");
  20. prop.setProperty("itfxp003","王祖贤");
  21. //void store(Writer writer, String comments):
  22. FileWriter fw = new FileWriter("myOtherStream\\fw.txt");
  23. prop.store(fw,null);
  24. fw.close();
  25. }
  26. }

IO流扩展

commons-io:

一款io流的工具,封装了很多处理io流和文件的方法,可以大大简化处理io流和操作代码
主要分为,工具类,尾端类,迭代器,文件过滤器等
工具类:使用静态方法执行共同任务
输入:用于InputStream和Reader实现
输出:用户OutputStream和Writer实现
过滤器:各种文件过滤器实现
比较器:各种文件的java.util.Comparator实现
文件监听器:监听文件系统事件的组件
常用工具类:
1、FileUtils
2、IoUtils
3、FilenameUtils
4、FileSystemUtils
注意:首先应该先导包

FileUtils:

提供文件操作(移动文件,读取文件,检查文件是否存在等等)的方法
String readFileToString(File file):读取文件内容,返回一个String
void writeStringToFile(file,data):将内容字符串data写入到file中
void copyDirectoryToDirectory(srcDir,srcDir):文件夹复制
void copyFile(file,file):文件复制
void copyFileToDirectory(file,srcDir):将文件复制到文件夹

FilenameUtils:

这个工具类主要用来处理文件名(包含文件路径)
String getExtension(String fileName):获取文件的扩展名
String getName(String fileName):获取文件名带扩展名
String getBaseName(String fileName):获取文件名
boolean isExtension(String fileName,String extension):判断fileName是否是ext后缀名

IOUtils:

包含处理读,写,复制的工具方法
int copy(InputStream in ,OutputStream out):字节流复制文件
int copy(Reader input , Writer output):字符流复制文件