2016年7月6日
摘要: JAVA中IO流主要分为两大类: 字节流:InputStream+OutputStream 字符流:Reader+Writer 字节流: InputStream是所有字节输入流的父类 OutputStream是所有字节输出流的父类 FileInputStream从文件中读取数据 FileOutpuS 阅读全文
posted @ 2016-07-06 16:44 kuillldan 阅读(584) 评论(0) 推荐(0) 编辑
摘要: 总的说来常用的集合类有两大类:Collection 和 Map 1) Collection接口有List和Set两大类子接口,List有ArrayList、LinkedList、Vector子类,Set有TreeSet和HashSet两个子类。 ArrayList和LinkedList使用比较类似, 阅读全文
posted @ 2016-07-06 16:14 kuillldan 阅读(341) 评论(0) 推荐(0) 编辑