26 Ocak 2023 Perşembe

Files.newInputStream metodu - NIO

Giriş
Eğer Path olarak bir dizin verirse java.nio.file.AccessDeniedException fırlatır. Kalıtım şöyle
Exception
  IOException
    FileSystemException
      AccessDeniedException

Örnek
Elimizde bir path olsun
Path path = Paths.get("path/to/my/file");
Şöyle yaparız.
try (InputStream in = Files.newInputStream(path)) {
    // work with "in"
}

Hiç yorum yok:

Yorum Gönder