7 Şubat 2023 Salı

Files.copy metodu - NIO

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