摘要:
1 public static void fileCopy(File in, File out) throws IOException { 2 FileChannel inChannel = new FileInputStream(in).getChannel(); 3 FileChannel outChannel = new FileOutputS... 阅读全文
posted @ 2017-07-02 16:16 天一涯 阅读(224) 评论(0) 推荐(0) 编辑