java 中的复制(将D盘中的文件复制到E盘中)

2018-06-18 01:51:22来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

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

public class CopyTestDToE {

public static void main(String[] args) {
String DoldPath="D:\\a.jpg";
String EnewPath="E:\\"+System.nanoTime()+".jpg";
copyFile(DoldPath,EnewPath);
}

private static void copyFile(String DoldPath, String EnewPath) {
FileInputStream fis=null;

FileOutputStream fos=null;


try {
fis=new FileInputStream(new File(DoldPath));
fos=new FileOutputStream(new File(EnewPath));

byte[] bytes=new byte[1024];

int num=0;

while((num=fis.read(bytes))!=-1){
fos.write(bytes,0,num);
fos.flush();
}

System.out.println("复制完成");

} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally{
try {
fos.close();
fis.close();
} catch (IOException e) {
e.printStackTrace();
}
}

}

}

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:char 转为 int 类型

下一篇:【读】为什么BIO效率低下