在现在的功能需求中,文件的处理基本上都是会涉及到的,应该说是一个很常用的功能,接下来就介绍文件处理当中的文件复制功能,很少的代码实现常用的功能。
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(); } }
|
注:如有需要,可自行转载,但是要加上原创作者及原文章链接哦…