Java递归实现操作系统文件的复制、粘贴和删除功能
最近更新:2015-10-29
|
字数总计:291
|
阅读估时:1分钟
|
阅读量:次
|
来源:ForeverLover
通过Java IO递归实现操作系统对文件的复制、粘贴和删除功能,剪切=复制+粘贴+删除
代码示例:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
| import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException;
public class FileCopyAndDelete {
public void deleteFile(String path) { File f = new File(path); if (f.isDirectory()) { File[] file = f.listFiles(); for (File file1 : file) { this.deleteFile(file1.toString()); file1.delete(); } } else { f.delete(); } f.delete(); }
public void copyFiles(String path1, String path2) throws IOException { File f = new File(path1); if (f.isDirectory()) { File file = new File(path2); if (!file.exists()) file.mkdir(); File[] file1 = f.listFiles(); for (File file2 : file1) { copyFiles(file2.toString(), path2 + "/" + file2.getName()); } } else { copy(path1, path2); } }
public void copy(String path1, String path2) throws IOException {
DataInputStream in = new DataInputStream(new BufferedInputStream( new FileInputStream(path1)));
byte[] b = new byte[in.available()]; in.read(b);
DataOutputStream out = new DataOutputStream(new BufferedOutputStream( new FileOutputStream(path2))); out.write(b);
in.close(); out.close(); }
public static void main(String[] args) { FileCopyAndDelete f = new FileCopyAndDelete();
} }
|