为了账号安全,请及时绑定邮箱和手机立即绑定

Java拷贝文件

Java拷贝文件

慕运维8079593 2018-12-07 02:36:42
请问如何用Java编写程序拷贝一个文件, 尽量使用效率高的方式.
查看完整描述

1 回答

?
萧十郎

TA贡献1815条经验 获得超13个赞

import java.io.File;
import java.io.IOException;

import org.apache.commons.io.FileUtils;

public class CopyFile {
    
    public static void main(String[] args) throws IOException {
        String srcFilePath = "D:/data.csv";//要拷贝的文件路径
        String destFilePath = "E:/data.csv";//拷贝后的存放路径
        copyFile(srcFilePath,destFilePath);
    }
    
    /**
     * copy file from srcFilePath to destFilePath
     * @param srcFilePath        源文件路径
     * @param destFilePath    目标文件路径
     * @throws IOException 
     */
    public static void copyFile(String srcFilePath,String destFilePath) throws IOException {
        File srcFile=new File(srcFilePath);  
        File destFile=new File(destFilePath);  
        FileUtils.copyFile(srcFile, destFile);
    }
}
查看完整回答
反对 回复 2018-12-16
  • 1 回答
  • 0 关注
  • 477 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信