摘要: 集合共有的方法:add,isEmpty,Iterator,remove Collection(不唯一,无序) List(不唯一,有序):ArrayList,LinkedList Set(唯一,无序):HashSet,TreeSet Map(键值对象)(没有Iterator): HashMap,Tre 阅读全文
posted @ 2016-03-28 20:53 Ivy_Xu 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 1 ---------------------------------------------------I/O------------------------------------------------- 2 源数据源----->程序------>目标数据源 3 (输入流)读入 (输出流)读出 4 输入输出流是相对计算机内存而言 5 6 7 1.按流向... 阅读全文
posted @ 2016-03-28 20:50 Ivy_Xu 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 1 范例: 2 public class PetDemo { 3 public static void main(String[] args) throws IOException { 4 BufferedWriter bw = null; 5 BufferedReader br = null; 6 Buffered... 阅读全文
posted @ 2016-03-28 20:49 Ivy_Xu 阅读(295) 评论(0) 推荐(0) 编辑
摘要: 1 范例: 2 public class ByteDemo { 3 public static void main(String[] args) { 4 OutputStream os = null; 5 InputStream is = null; 6 FileOutputStream os1 = null; 7 ... 阅读全文
posted @ 2016-03-28 20:48 Ivy_Xu 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 1 运用File类进行文件操作 2 file.getPath() 相对路径 3 file.getAbsolutePath() 绝对路径 4 路径:/ \\ 5 方法: 6 创建文件 7 exists() 8 createNewFile() 9 10 删除文件 11 e... 阅读全文
posted @ 2016-03-28 20:40 Ivy_Xu 阅读(357) 评论(0) 推荐(0) 编辑