字节流

字节流

字节流的父类(抽象类)

//InputStream 字节输入流  常用方法

public int read(){}

public int read(byte[] b){}

public int read(byte[] b, int off, int len){}

// OutputStream 字节输出流  常用方法

public void write(int n){}

public void write(byte[] b){}

public void write(byte[] b, int off, int len){}

posted on 2021-02-06 23:21  ~码铃薯~  阅读(35)  评论(0编辑  收藏  举报

导航