在现在的功能需求中,文件的处理基本上都是会涉及到的,应该说是一个很常用的功能,接下来就介绍文件处理当中的文件复制功能,很少的代码实现常用的功能。

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
public static void main(String[] args) throws IOException {
String url = "test.txt";
String suffixName = url.substring(url.lastIndexOf("."));
//获取要复制的文件路径
FileInputStream fileInputStream = new FileInputStream("F:\\" + url);
String filePath = "F:\\test\\";
File dest = new File(filePath+System.currentTimeMillis());
// 判断文件路径是否存在,不存在就创建路径
if (!dest.getParentFile().exists()) {
dest.getParentFile().mkdir();
}
//获取要写入的文件路径
FileOutputStream fileOutputStream = new FileOutputStream(dest + suffixName);
//获取要复制的的文件通道
FileChannel fileChannelInput = fileInputStream.getChannel();
//获取要写入的文件通道
FileChannel fileChannelOutput = fileOutputStream.getChannel();
// 将要复制文件通道的数据,写入到要写入的文件通道
fileChannelInput.transferTo(0, fileChannelInput.size(), fileChannelOutput);
try {
if (fileInputStream != null){
fileInputStream.close();
}
if (fileChannelInput != null) {
fileChannelInput.close();
}
if (fileOutputStream != null) {
fileOutputStream.close();
}
if (fileChannelOutput != null) {
fileChannelOutput.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}

注:如有需要,可自行转载,但是要加上原创作者及原文章链接哦…