Java를 사용하여 한 위치에서 다른 위치로 이미지 파일을 복사하려고합니다. 이제 소스 위치에있는 이미지 파일의 크기가 무엇이든 특정 크기의 이미지 파일을 저장하려고합니다.다른 크기의 다른 위치로 이미지 복사
나는 소스 파일과 같은 크기의 대상 위치에 이미지를 생산하고, 다음 코드를 사용하고 있습니다 :
여기public class filecopy {
public static void copyFile(File sourceFile, File destFile)
throws IOException {
if (!destFile.exists()) {
destFile.createNewFile();
}
FileChannel source = null;
FileChannel destination = null;
try {
source = new FileInputStream(sourceFile).getChannel();
destination = new FileOutputStream(destFile).getChannel();
// previous code: destination.transferFrom(source, 0, source.size());
// to avoid infinite loops, should be:
long count = 0;
long size = source.size();
while ((count += destination.transferFrom(source, count, size
- count)) < size)
;
} finally {
if (source != null) {
source.close();
}
if (destination != null) {
destination.close();
}
}
}
public static void main(String args[]) {
try {
File sourceFile = new File("D:/new folder/abc.jpg");
File destFile = new File("d:/new folder1/abc.jpg");
copyFile(sourceFile,destFile);
} catch (IOException ex) {
ex.printStackTrace();
}
}
}
좋은 프로젝트, 나는 항상 저도 그렇게하고 싶었습니다. 그러나 당신의 질문은 무엇입니까? – ppeterka
참고로, 코드는 컴파일 할 수 없습니다 (마지막에 매달려있는 문자열이 있음). – Perception