Java IO编程——文件拷贝
2019-11-09 16:05:19来源:博客园 阅读 ()
Java IO编程——文件拷贝
在操作系统里面有一个copy命令,这个命令的主要功能是可以实现文件的拷贝处理,现在要求模拟这个命令,通过初始化参数输入拷贝的源文件路径与拷贝的目标路径实现文件的拷贝处理。
需求分析:
·需要实现文件的拷贝操作,那么这种拷贝就有可能拷贝各种类型的文件,所以肯定使用字节流;
·在进行拷贝的时候有可能需要考虑到大文件的拷贝问题;
实现方案:
·方案一:使用InputStream将全部要拷贝的内容直接读取到程序里面,而后一次性的输出到目标文件;
|- 如果现在拷贝的文件很大,基本上程序就死了;
·方案二:采用部分拷贝,读取一部分输出一部分数据,如果现在要采用第二种做法,核心的操作方法:
|- InputStream:public int read?(byte[] b) throws IOException;
|- OutputStream:public void write?(byte[] b,int off, int len) throws IOException;
范例:实现文件拷贝处理
1 import java.io.File; 2 import java.io.FileInputStream; 3 import java.io.FileOutputStream; 4 import java.io.InputStream; 5 import java.io.OutputStream; 6 class FileUtil { // 定义一个文件操作的工具类 7 private File srcFile ; // 源文件路径 8 private File desFile ; // 目标文件路径 9 public FileUtil(String src,String des) { 10 this(new File(src),new File(des)) ; 11 } 12 public FileUtil(File srcFile,File desFile) { 13 this.srcFile = srcFile ; 14 this.desFile = desFile ; 15 } 16 public boolean copy() throws Exception { // 文件拷贝处理 17 if (!this.srcFile.exists()) { // 源文件必须存在! 18 System.out.println("拷贝的源文件不存在!"); 19 return false ; // 拷贝失败 20 } 21 if (!this.desFile.getParentFile().exists()) { 22 this.desFile.getParentFile().mkdirs() ; // 创建父目录 23 } 24 byte data [] = new byte[1024] ; // 开辟一个拷贝的缓冲区 25 InputStream input = null ; 26 OutputStream output = null ; 27 try { 28 input = new FileInputStream(this.srcFile) ; 29 output = new FileOutputStream(this.desFile) ; 30 int len = 0 ; 31 // 1、读取数据到数组之中,随后返回读取的个数、len = input.read(data 32 // 2、判断个数是否是-1,如果不是则进行写入、(len = input.read(data)) != -1 33 while ((len = input.read(data)) != -1) { 34 output.write(data, 0, len); 35 } 36 return true ; 37 } catch (Exception e) { 38 throw e ; 39 } finally { 40 if (input != null) { 41 input.close(); 42 } 43 if (output != null) { 44 output.close() ; 45 } 46 } 47 } 48 } 49 public class JavaAPIDemo { 50 public static void main(String[] args) throws Exception { 51 if (args.length != 2) { // 程序执行出错 52 System.out.println("命令执行错误,执行结构:java JavaAPIDemo 拷贝源文件路径 拷贝目标文件路径"); 53 System.exit(1); 54 } 55 long start = System.currentTimeMillis() ; 56 FileUtil fu = new FileUtil(args[0],args[1]) ; 57 System.out.println(fu.copy() ? "文件拷贝成功!" : "文件拷贝失败!"); 58 long end = System.currentTimeMillis() ; 59 System.out.println("拷贝完成的时间:" + (end - start)); 60 } 61 }JavaAPIDemo
但是需要注意的是,以上的做法是属于文件拷贝的最原始的实现,而从JDK1.9开始InputStream和Reader类中都追加有数据转存的处理操作方法:
·InputStream:public long transferTo?(OutputStream out) throws IOException;
·Reader:public long transferTo?(Writer out) throws IOException;
范例:使用转存的方式处理
1 import java.io.File; 2 import java.io.FileInputStream; 3 import java.io.FileOutputStream; 4 import java.io.InputStream; 5 import java.io.OutputStream; 6 class FileUtil { // 定义一个文件操作的工具类 7 private File srcFile ; // 源文件路径 8 private File desFile ; // 目标文件路径 9 public FileUtil(String src,String des) { 10 this(new File(src),new File(des)) ; 11 } 12 public FileUtil(File srcFile,File desFile) { 13 this.srcFile = srcFile ; 14 this.desFile = desFile ; 15 } 16 public boolean copy() throws Exception { // 文件拷贝处理 17 if (!this.srcFile.exists()) { // 源文件必须存在! 18 System.out.println("拷贝的源文件不存在!"); 19 return false ; // 拷贝失败 20 } 21 if (!this.desFile.getParentFile().exists()) { 22 this.desFile.getParentFile().mkdirs() ; // 创建父目录 23 } 24 InputStream input = null ; 25 OutputStream output = null ; 26 try { 27 input = new FileInputStream(this.srcFile) ; 28 output = new FileOutputStream(this.desFile) ; 29 input.transferTo(output) ; 30 return true ; 31 } catch (Exception e) { 32 throw e ; 33 } finally { 34 if (input != null) { 35 input.close(); 36 } 37 if (output != null) { 38 output.close() ; 39 } 40 } 41 } 42 } 43 public class JavaAPIDemo { 44 public static void main(String[] args) throws Exception { 45 if (args.length != 2) { // 程序执行出错 46 System.out.println("命令执行错误,执行结构:java JavaAPIDemo 拷贝源文件路径 拷贝目标文件路径"); 47 System.exit(1); 48 } 49 long start = System.currentTimeMillis() ; 50 FileUtil fu = new FileUtil(args[0],args[1]) ; 51 System.out.println(fu.copy() ? "文件拷贝成功!" : "文件拷贝失败!"); 52 long end = System.currentTimeMillis() ; 53 System.out.println("拷贝完成的时间:" + (end - start)); 54 } 55 }JavaAPIDemo
此时千万要注意程序的运行版本问题。如果说现在对此程序要求进一步扩展,可以实现一个文件目录的拷贝呢?一旦进行了文件目录的拷贝还需要拷贝所有的子目录中的文件。
范例:文件夹拷贝
1 import java.io.File; 2 import java.io.FileInputStream; 3 import java.io.FileOutputStream; 4 import java.io.InputStream; 5 import java.io.OutputStream; 6 class FileUtil { // 定义一个文件操作的工具类 7 private File srcFile ; // 源文件路径 8 private File desFile ; // 目标文件路径 9 public FileUtil(String src,String des) { 10 this(new File(src),new File(des)) ; 11 } 12 public FileUtil(File srcFile,File desFile) { 13 this.srcFile = srcFile ; 14 this.desFile = desFile ; 15 } 16 public boolean copyDir() throws Exception { 17 try { 18 this.copyImpl(this.srcFile) ; 19 return true ; 20 } catch (Exception e) { 21 return false ; 22 } 23 } 24 private void copyImpl(File file) throws Exception { // 递归操作 25 if (file.isDirectory()) { // 是目录 26 File results [] = file.listFiles() ; // 列出全部目录组成 27 if (results != null) { 28 for (int x = 0 ; x < results.length ; x ++) { 29 copyImpl(results[x]) ; 30 } 31 } 32 } else { // 是文件 33 String newFilePath = file.getPath().replace(this.srcFile.getPath() + File.separator, "") ; 34 File newFile = new File(this.desFile,newFilePath) ; // 拷贝的目标路径 35 this.copyFileImpl(file, newFile) ; 36 } 37 } 38 private boolean copyFileImpl(File srcFile,File desFile) throws Exception { 39 if (!desFile.getParentFile().exists()) { 40 desFile.getParentFile().mkdirs() ; // 创建父目录 41 } 42 InputStream input = null ; 43 OutputStream output = null ; 44 try { 45 input = new FileInputStream(srcFile) ; 46 output = new FileOutputStream(desFile) ; 47 input.transferTo(output) ; 48 return true ; 49 } catch (Exception e) { 50 throw e ; 51 } finally { 52 if (input != null) { 53 input.close(); 54 } 55 if (output != null) { 56 output.close() ; 57 } 58 } 59 } 60 61 public boolean copy() throws Exception { // 文件拷贝处理 62 if (!this.srcFile.exists()) { // 源文件必须存在! 63 System.out.println("拷贝的源文件不存在!"); 64 return false ; // 拷贝失败 65 } 66 return this.copyFileImpl(this.srcFile, this.desFile) ; 67 } 68 } 69 public class JavaAPIDemo { 70 public static void main(String[] args) throws Exception { 71 if (args.length != 2) { // 程序执行出错 72 System.out.println("命令执行错误,执行结构:java JavaAPIDemo 拷贝源文件路径 拷贝目标文件路径"); 73 System.exit(1); 74 } 75 long start = System.currentTimeMillis() ; 76 FileUtil fu = new FileUtil(args[0],args[1]) ; 77 if (new File(args[0]).isFile()) { // 文件拷贝 78 System.out.println(fu.copy() ? "文件拷贝成功!" : "文件拷贝失败!"); 79 } else { // 目录拷贝 80 System.out.println(fu.copyDir() ? "文件拷贝成功!" : "文件拷贝失败!"); 81 } 82 long end = System.currentTimeMillis() ; 83 System.out.println("拷贝完成的时间:" + (end - start)); 84 } 85 }JavaAPIDemo 本程序是IO操作的核心代码,本程序可以理解整个的IO处理机制就非常容易理解了。
原文链接:https://www.cnblogs.com/CSAH/p/11777930.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 国外程序员整理的Java资源大全(全部是干货) 2020-06-12
- 2020年深圳中国平安各部门Java中级面试真题合集(附答案) 2020-06-11
- 2020年java就业前景 2020-06-11
- 04.Java基础语法 2020-06-11
- Java--反射(框架设计的灵魂)案例 2020-06-11
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash