猿问
回到首页
个人中心
反馈问题
注册登录
下载APP
首页
课程
实战
体系课
手记
专栏
慕课教程
Java拷贝文件
请问如何用Java编写程序拷贝一个文件, 尽量使用效率高的方式.
慕运维8079593
浏览 478
回答 1
1回答
萧十郎
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); } }
0
0
0
打开App,查看更多内容
随时随地看视频
慕课网APP
相关分类
Java
继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续