复制文件到目标路径

不多说 直接上代码 你懂得




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


import javax.imageio.stream.FileImageInputStream;
import javax.imageio.stream.FileImageOutputStream;


public class CopyImage {

/**
* 拷贝图片至新的文件下
* @param oldImgFile 原文件存放路径
* @param newImgFile 新文件存放路径
*/
private static void copyImage(String oldImgFile,String newImgFile){
FileImageInputStream infile=null;
FileImageOutputStream outfile=null;
try {
File filepath=new File(oldImgFile);
infile=new FileImageInputStream(filepath);
byte[] b=new byte[1024*3];
File newfile=new File(newImgFile);
       if (!newfile.getParentFile().exists()) {
        newfile.getParentFile().mkdirs();
       }
outfile=new FileImageOutputStream(newfile);
int bufLength = 0;
while ((bufLength = infile.read(b)) != -1) {
outfile.write(b, 0, bufLength);
outfile.flush();
}
} catch (FileNotFoundException e) {

} catch (IOException e) {

}finally{
try {
if(infile!=null)
{
infile.close();
}
if(outfile!=null){
 outfile.close();
}
} catch (IOException e1) {
infile=null;
outfile=null;
}
}
}

public static void main(String[] args){
CopyImage c = new CopyImage();
c.copyImage("F:\\suotu\\sLA20121018B15-001.jpg", "F:\\suotu\\copy\\sLA20121018B15-001_s.jpg");

}


}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值