• Java IO流实现文件复制


    目录

    前言

    文件复制底层逻辑

     代码实现

    ​编辑 重点!!! 

    完整代码

     改善思考


    前言

    Windows文件复制时我们是使用Ctrl C复制Ctrl V粘贴,上一篇文章Java基础入门·对存储文件的相关操作

    我们学习了Java IO流对文件的读写操作,那我们可以思考一下,IO流字节的读取和写入,怎样运用到文件复制的操作中?


    文件复制底层逻辑

    IO流的输入流InputStream是读取文件到内存里,outputStream是把字节输出到文件里保存

    文件中每个字节依次向新文件中移动,当字节全部移动完成,新文件也就copy复制成功了 


    代码实现

    首先在Java代码中 IO流的使用,需要输入和输出,所以我们需要

    绑定数据源文件        绑定要复制的目标文件(没有此文件时,输出时会自动生成)

    先看一下我们要复制的文件,新建了一个1.txt文件,字符为:Hello World ,我们获取一下它的路径,写入代码中绑定,然后让其生成并保存在2.txt文件中

    1. //字节输入流,绑定数据源文件
    2. FileInputStream fileInputStream = new FileInputStream("F:\\Text\\1.txt");
    3. //字节输出流,绑定复制的目标文件
    4. FileOutputStream fileOutputStream = new FileOutputStream("F:\\Text\\2.txt");

     设置字节数组缓冲,提高效率

    原有的输出为1个字节1个字节地复制,设置字节数组为1024,则每次输出的大小为1KB(不一定为1024,也可以为1024的整数倍)

    1. //字节数组缓冲
    2. byte[] bytes = new byte[1024];

     循环读取文件字节,直到read读取到末尾返回-1

    这里的write后面两个参数指得是从头开始,然后读取到r个字节,就写入r个字节

    最后不要忘记close关闭两个IO流(记得是两个,一个也不能少)

    最后不要忘记close关闭两个IO流(记得是两个,一个也不能少)

    最后不要忘记close关闭两个IO流(记得是两个,一个也不能少)

    1. while ((r = fileInputStream.read(bytes))!=-1){
    2. //字节输出流,写入字节数组
    3. fileOutputStream.write(bytes,0,r);
    4. }
    1. fileInputStream.close();
    2. fileOutputStream.close();

    最后我们运行一下代码,可以发现是可行的,成功新建了一个文件,并把1.txt的内容复制到了2.txt里。这种方法不局限于复制文本文件,还可以进行图片,视频的复制等


    重点!!! 

    文件名一定要注意中英文!!!

    若使用的编码不对,出现中文乱码,文件就无法复制,出现报错!!!


    完整代码

    1. public class copyText {
    2. public static void main(String[] args) throws IOException {
    3. copy01();
    4. }
    5. public static void copy01() throws IOException {
    6. //字节输入流,绑定数据源文件
    7. FileInputStream fileInputStream = new FileInputStream("F:\\Text\\1.txt");
    8. //字节输出流,绑定复制的目标文件
    9. FileOutputStream fileOutputStream = new FileOutputStream("F:\\Text\\2.txt");
    10. //字节数组缓冲
    11. byte[] bytes = new byte[1024];
    12. int r = 0;
    13. //循环读取数据源文件
    14. while ((r = fileInputStream.read(bytes))!=-1){
    15. //字节输出流,写入字节数组
    16. fileOutputStream.write(bytes,0,r);
    17. }
    18. fileInputStream.close();
    19. fileOutputStream.close();
    20. }
    21. }

    文件夹复制

    在Java中要复制文件夹,可以通过递归来实现。

    首先需要判断当前处理的文件是文件夹还是文件,如果是文件夹,就遍历文件夹下的所有文件和子目录

    递归操作;如果是文件,则使用IO流来拷贝文件。

    这个示例代码会将指定的源文件夹路径中的所有内容复制到指定的目标文件夹路径中,包括子文件夹和文件。需要注意的是,如果目标文件夹不存在,程序会自动创建一个。

    1. import java.io.*;
    2. public class CopyFolderExample {
    3. public static void main(String[] args) {
    4. String sourceFolder = "C:\\input"; // 源文件夹路径
    5. String destinationFolder = "C:\\output"; // 目标文件夹路径
    6. File sourceFile = new File(sourceFolder);
    7. File destinationFile = new File(destinationFolder);
    8. try {
    9. if (sourceFile.isDirectory()) {
    10. if (!destinationFile.exists()) {
    11. destinationFile.mkdir();
    12. }
    13. String[] files = sourceFile.list();
    14. for (String file : files) {
    15. File srcFile = new File(sourceFile, file);
    16. File destFile = new File(destinationFile, file);
    17. copyFolder(srcFile, destFile);
    18. }
    19. } else {
    20. InputStream inputStream = new FileInputStream(sourceFile);
    21. OutputStream outputStream = new FileOutputStream(destinationFile);
    22. byte[] buffer = new byte[1024];
    23. int length;
    24. while ((length = inputStream.read(buffer)) > 0) {
    25. outputStream.write(buffer, 0, length);
    26. }
    27. inputStream.close();
    28. outputStream.close();
    29. }
    30. System.out.println("Folder copied successfully.");
    31. } catch (IOException e) {
    32. e.printStackTrace();
    33. System.err.println("Unable to copy folder.");
    34. }
    35. }
    36. private static void copyFolder(File source, File destination) throws IOException {
    37. if (source.isDirectory()) {
    38. if (!destination.exists()) {
    39. destination.mkdir();
    40. }
    41. String[] files = source.list();
    42. for (String file : files) {
    43. File srcFile = new File(source, file);
    44. File destFile = new File(destination, file);
    45. copyFolder(srcFile, destFile);
    46. }
    47. } else {
    48. InputStream inputStream = new FileInputStream(source);
    49. OutputStream outputStream = new FileOutputStream(destination);
    50. byte[] buffer = new byte[1024];
    51. int length;
    52. while ((length = inputStream.read(buffer)) > 0) {
    53. outputStream.write(buffer, 0, length);
    54. }
    55. inputStream.close();
    56. outputStream.close();
    57. }
    58. }
    59. }

    改善思考

     文件复制粘贴会了,那剪切是否可以尝试一下,哈哈其实就是在原有的基础上,先通过复制文件,把字节都移动后,再把原文件删除即可,这对于你们来说,应该是小意思,那就当课后作业吧!

    今天的Java文章分享就到此结束了, 喜欢的小伙伴记得一键三连,点赞收藏评论,如果想了解更多内容,可以用未来百万富豪的手指,点点小小的关注!你们的支持就是我最大的动力!

  • 相关阅读:
    正式发布!Matlab配色神器TheColor
    _c++11( lambda)
    网页按钮点击动画
    【BUG日记】【Processing】NullPointerException,unable to decode sound file “xxx“
    Java之HashMap经典算法-红黑树(插入节点平衡调整,左旋转,右旋转)
    智能机器人与AI助手:未来办公场景的变革者
    【关于QT相关问题==》win遇到运行生成软件时,“应用程序无法正常启动0xc000007b“,问题解放办法之一】
    用 VS Code 搞Qt6:使用 PySide 6
    在Ubuntu系统中安装Docker
    【洛谷 P1152】欢乐的跳 题解(枚举+位集合)
  • 原文地址:https://blog.csdn.net/neadsc/article/details/132846485