Java’da Bir Dosya Kopyalamanın Kolay ve Kısa Yolu

Java’ da herhangi bir dosyayı yüksek performans ile kopyalamak için aşağıdaki kod bloğunu kullanabilirsiniz. Tabi öncelikle import anahtar sözcüğü ile aşağıdaki sınıfları uygulamanıza dahil etmeniz gerekmektedir.

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.nio.channels.FileChannel;
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();
  destination.transferFrom(source, 0, source.size());
 }
 finally {
  if(source != null) {
   source.close();
  }
  if(destination != null) {
   destination.close();
  }
 }
} 

About kaanmutlu

Senior Software Engineer from Istanbul, Turkey
This entry was posted in Uncategorized and tagged , . Bookmark the permalink.

Leave a comment