参考: http://blog.csdn.net/zhaoyanjun6/article/details/54292148
流的概念:流是一组有顺序,有起点和终点的字节集合,是对数据传输的抽象和总称。即数据在两设备间的传输称为流,流的本质是数据传输,根据数据传输的特性将流抽象为各种类,方便更直观的进行数据操作。
IO流的分类:根据处理数据的不同,可以分为字节流和字符流;跟俊数据的流向分类,可以分为输入流和输出流。
字符流和字节流的区别:因为数据编码的不同,而有了对字符进行高效操作的流对象,本质其实是基于字节流读取时,去查了指定的码表
-
读写单位不一样:字节流以字节为单位(8bit),字符流以字符为单位,根据码表映射字符,一次可能读出多个字节。
-
处理的对象不一样:字节流能处理所有类型的数据(如图片和avi等),而字符流只能处理字符类型的数据
-
字节流一次读入或者读出八位二进制,而字符流一次读入或者读出十六位二进制
设备上的数据无论是图片或者视频文字,他们都是以二进制存储的,二进制的最终都是以一个8位为数据单元进行体现,所以计算机中的最小数据单元就是字节。意味着字节流可以处理设备上的所有数据,所以字节流一样可以处理字符数据。只要是处理文本数据,就优先考虑使用字符流,除此之外都是使用字节流。
输入流和输出流:输入流只能执行读操作,输出流只能执行写操作。
输入字节流:InputStream
-
InputStream是所有输入字节流的父类,它是一个抽象类。
-
ByteArrayInputStream、StreamBufferInputStream、FileInputStream是三种基本的介质流,它们分别从Byte数组,StringBuffer,和本地文件中读取数据。
-
PipedInputStream是从与其他线程共用的管道中读取数据,与Piped相关的知识后续单独介绍
-
ObjectInputStream和所有FIlterInputStream的子类都是装饰流(装饰器模式的主角)
输出字节流:OutputStream
-
OutputStream是所有赎出来的父类,它是一个抽象类。
-
ByteArrayOutputStream、FileOutputStream 是两种基本的介质流,它们分别向Byte 数组、和本地文件中写入数据。
-
PipedOutputStream 是向与其它线程共用的管道中写入数据。
-
ObjectOutputStream 和所有FilterOutputStream 的子类都是装饰流。
总结:
-
输入流:InputStream或者Reader:从文件中读到程序中
-
输出流:OutputStream或者Writer:从程序中输出到文件中
节点流:直接与数据源相连,读入或者读出。(直接使用节点流,读写不方便,为了更快的读写文件,才有了处理流)
常用的节点流:
-
父类:InputStream、OutputStream、Reader、Writer
-
文件:FileInputStream、FileOutputStream、FileReader、FileWriter文件进行处理的节点流
-
数组:ByteArrayInputStream、ByteArrayOutputStream、CharArrayReader、CharArrayWriter对数组进行处理的节点流(对应的不再是文件,而是内存中的数组)
-
字符串:StringReader、StringWriter对字符串进行处理的字节流
-
管道:PipedInputStream、PipedOutputStream、PipedReader、PipedWriter对管道进行处理的节点流
处理流
处理流和节点流一块使用,在节点流的基础上,再套结一层,套接在节点流上就是处理流。如BufferedReader。处理流的构造方法总是要带一个其他的流对象做参数。一个流对象经过其他流的多次包装,称为流的链接。
常用的处理流
-
缓冲流:BufferedInputStream、BufferedOutputStream、BufferedReader、BufferedWriter增加缓冲功能,避免频繁读写硬盘。
-
转换流:InputStreamReader、OutputStreamReader实现字节流和字节符之间的转换
-
数据流:DataInputStream、DataOutStream等提供将基础数据类型写入到文件中, 或者读取出InputStreamReader(InputStream) InputStreamReader(InputStream,String charSet) OutputStreamWriter(OutputStream) OutputStreamWriter(OutputStream,String charSet)
-
InputStreamReader(InputStream) InputStreamReader(InputStream,String charSet) OutputStreamWriter(OutputStream) OutputStreamWriter(OutputStream,String charSet)
实战演练
-
FileInputStream类的使用:读取文件内容
-
package com.lh.cn; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; public class TestFileInputStream { public static void main(String[] args) { TestFileInputStream ts =new TestFileInputStream(); String filePath="C:\\luoh\\eduspace\\sparktest\\src\\main\\scala\\input"; String res=ts.readFile(filePath); System.out.println(res); } public String readFile(String filePath){ FileInputStream fis=null; String res=""; try{ fis=new FileInputStream(filePath); int size = fis.available(); System.out.println(size); byte[] array =new byte[size]; fis.read(array); res=new String(array); //System.out.println(res); }catch(FileNotFoundException ex){ ex.printStackTrace(); }catch(IOException ex){ ex.printStackTrace(); }finally { if(fis!=null){ try{ fis.close(); }catch(IOException ex){ ex.printStackTrace(); } } } return res; } }
FileOutputStream类的使用:读取文件内容
-
package com.lh.cn; import org.mortbay.util.IO; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; public class TestFileOutputStream { public static void main(String[] args) { TestFileOutputStream tos = new TestFileOutputStream(); String content ="今天69"; String filePath="C:\\luoh\\eduspace\\sparktest\\src\\main\\scala\\input"; tos.writeFile(filePath,content); } public void writeFile(String filePath,String content){ FileOutputStream fos=null; try{ fos=new FileOutputStream(filePath); byte[] array=content.getBytes(); fos.write(array); }catch(FileNotFoundException ex){ ex.printStackTrace(); }catch (IOException ex){ ex.printStackTrace(); }finally { if(fos!=null){ try{ fos.close(); } catch(IOException ex){ ex.printStackTrace(); } } } } }