从设计者的角度理解Java IO流
2017-01-17
阅读 7 分钟
3.3k最基本的字节输入流,抽象类,定义了读取原始字节的所有基本方法1.1.1、public abstract int read() throws IOException 读取一个字节的方法,最基础的方法1.1.2、public int read(byte b[], int off, int len) 读取指定长度的字节到字节数组,基于方法1.1.11.1.3、public int read(byte b[]) throws IOException 读取一...