import java.io.File;
import java.io.FileOutputStream;
import org.springframework.core.io.ClassPathResource;
import org.springframework.core.io.Resource;
import org.springframework.util.FileCopyUtils;
/**
*
* @Description: 利用spring中的FileCopyUtils.copy()复制文件
* @Author : yc.min
* @Date : 2014年1月10日
*/
public class Fileutilscopy {
public static void main(String[] args) {
try {
FileOutputStream os=new FileOutputStream(new File("d:/20.jpg"));
Resource resource=new ClassPathResource("/1.jpg");
FileCopyUtils.copy(resource.getInputStream(),os);//将1复制给20
System.out.print("SUCEESS");
} catch (Exception e) {
e.printStackTrace();
}
}
}
注:
Resource resource=new ClassPathResource("/1.jpg");
1.jpg文件要放到src,目录下&