温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Java File文件怎么复制

发布时间:2025-12-15 16:07:09 来源:亿速云 阅读:103 作者:小樊 栏目:编程语言

在Java中,复制文件可以通过多种方式实现,包括使用java.io包中的类和方法,或者使用java.nio.file包中的类和方法。下面是两种常见的方法来复制文件:

方法1:使用java.io

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;

public class FileCopyExample {
    public static void main(String[] args) {
        String sourceFilePath = "path/to/source/file.txt";
        String destinationFilePath = "path/to/destination/file.txt";

        FileInputStream fis = null;
        FileOutputStream fos = null;

        try {
            fis = new FileInputStream(sourceFilePath);
            fos = new FileOutputStream(destinationFilePath);

            byte[] buffer = new byte[1024];
            int length;
            while ((length = fis.read(buffer)) > 0) {
                fos.write(buffer, 0, length);
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                if (fos != null) fos.close();
                if (fis != null) fis.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}

方法2:使用java.nio.file

import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.StandardCopyOption;

public class FileCopyExampleNIO {
    public static void main(String[] args) {
        Path sourceFilePath = Paths.get("path/to/source/file.txt");
        Path destinationFilePath = Paths.get("path/to/destination/file.txt");

        try {
            Files.copy(sourceFilePath, destinationFilePath, StandardCopyOption.REPLACE_EXISTING);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

第二种方法使用了java.nio.file包中的Files.copy方法,这是一个更加现代和简洁的方式来复制文件。它支持更多的选项,比如覆盖已存在的文件(通过StandardCopyOption.REPLACE_EXISTING选项)。

在实际应用中,你应该根据你的需求和Java版本来选择合适的方法。如果你使用的是Java 7或更高版本,推荐使用java.nio.file包中的方法,因为它们提供了更好的性能和更多的功能。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI