发现了一个复制文件的源码自带的方法,比起流读写的方法更简单了
(source, target, options)
源码部分
public static Path copy(Path source, Path target, CopyOption... options) throws IOException { FileSystemProvider provider = provider(source); if (provider(target) == provider) { // same provider (source, target, options); } else { // different providers (source, target, options); } return target; }
用法也很简单,源文件,目标文件File 获取path,在传入方法,options可以不传值,参数可以忽略。
例如:D:/文件要复制到E:/xx/中,
就要先将两文件的path得到,这里要求目标文件文件不存在,存在了就爆错了。
但是目标文件的路径必须要有,源代码方法中没有创建dir的方法。
eg.
//要确认拷贝的路径存在 File destDir = new File("E:/xx"); if(!(()&& ())) { (); }
File source = new File("D:/"); File dest = new File("E:/xx/"); try{ ((), ()); } catch (IOException e){ // TODO Auto-generated catch block (); }
复制文件就轻松搞定了