
IO
文章平均质量分 80
liaoningjinbao
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
InputStream
public int read(byte b[], int off, int len) throws IOException { if (b == null) { throw new NullPointerException(); } else if (off < 0 || len < 0 || len > b.length - off) { ...原创 2014-11-12 10:18:20 · 95 阅读 · 0 评论 -
IO读写文件的简单性能比较
public class InputStreamTest { public static void main(String[] args) { InputStreamTest inputstream = new InputStreamTest(); FileInputStreamExample example = inputstream.new FileInputStrea...原创 2014-11-13 11:08:23 · 125 阅读 · 0 评论