Network
文章平均质量分 67
sea.ly
这个作者很懒,什么都没留下…
展开
-
InputStream类详解
public int read(byte b[], int off, int len) throws IOException {if (b == null) { // 检测参数是否为nullthrow new NullPointerException();} else if (off < 0 || len < 0 || len > b.length - off) {t...原创 2018-10-06 00:40:59 · 1273 阅读 · 0 评论 -
OutputStreamWriter类详解
|--字符流( 字符流 = 字节流 +编码表。) |--字符输入流 Reader ------抽象类 int read():一次读取一个字符 int read(char[] chs):一次读取一...原创 2018-10-06 23:43:50 · 3119 阅读 · 0 评论