copy metodu - Path + Path + options
Örnek
Şöyle yaparız.Path sourceFile = ...;
Path targetFile = ...;
// copy..
Files.copy(sourceFile,targetFile, StandardCopyOption.REPLACE_EXISTING);
copy metodu - InputStream + Path + optionsÖrnek
Şöyle yaparız
InputStrean src = ...;
Path dest = ...;
Files.copy(src, dest, StandardCopyOption.REPLACE_EXISTING);
ÖrnekŞöyle yaparız.
URL url = ...;
Path targetPath = ...;
Files.copy(url.openStream(), targetPath,StandardCopyOption.REPLACE_EXISTING);
Hiç yorum yok:
Yorum Gönder