摘要: //文件夹复制 public static boolean folderCopy(String oldName,String newName){ File oldfile = new File(oldName); File newfile = new File(newName); if(!oldfile.exists())return f... 阅读全文
posted @ 2018-03-11 09:32 静赋清承 阅读(113) 评论(0) 推荐(0) 编辑
摘要: public static void fileCopy2BufferByte(String oldFileName,String newFileName){ BufferedInputStream bis = null; BufferedOutputStream bos = null; try{ bis = new ... 阅读全文
posted @ 2018-03-11 08:32 静赋清承 阅读(238) 评论(0) 推荐(0) 编辑
摘要: public static void fileCopy2Buffer(String oldFileName,String newFileName){ BufferedReader br = null; BufferedWriter bw = null; try { br = new BufferedReader(new Fi... 阅读全文
posted @ 2018-03-11 08:23 静赋清承 阅读(135) 评论(0) 推荐(0) 编辑