Ruta del método getFileSystem() en Java con ejemplos

La interfaz Path se agregó a Java NIO en Java 7 . La interfaz Path se encuentra en el paquete java.nio.file, por lo que el nombre completo de la interfaz Java Path es java.nio.file.Path. Una instancia de Java Path representa una ruta en el sistema de archivos. Una ruta puede usarse para ubicar un archivo o un directorio. La ruta de una entidad puede ser de dos tipos, una es una ruta absoluta y otra es una ruta relativa. La ruta absoluta es la dirección de ubicación desde la raíz hasta la entidad, mientras que la ruta relativa es la dirección de ubicación relativa a alguna otra ruta.

getFileSystem() de java.nio.file.Path utilizado para devolver el sistema de archivos que creó este objeto Path.

Sintaxis:

FileSystem getFileSystem()

Parámetros: Este método no acepta nada.

Valor devuelto: este método devuelve el sistema de archivos que creó este objeto Path.

Los siguientes programas ilustran el método getFileSystem():
Programa 1:

// Java program to demonstrate
// java.nio.file.Path.getFileSystem() method
  
import java.io.IOException;
import java.nio.file.FileSystem;
import java.nio.file.Path;
import java.nio.file.Paths;
  
public class GFG {
    public static void main(String[] args)
        throws IOException
    {
  
        // create object of Path
        Path path
            = Paths.get("D:/workspace/AmanCV.docx");
  
        // call getFileSystem()
        // and get FileSystem object
        FileSystem fs = path.getFileSystem();
  
        // print separator of FileSystem
        System.out.println("Separator used for FileSystem: "
                           + fs.getSeparator());
    }
}
Producción:

Separator used for FileSystem: /

Programa 2:

// Java program to demonstrate
// java.nio.file.Path.getFileSystem() method
  
import java.io.IOException;
import java.nio.file.FileSystem;
import java.nio.file.Path;
import java.nio.file.Paths;
  
public class GFG {
    public static void main(String[] args)
        throws IOException
    {
  
        // create object of Path
        Path path = Paths.get("D:/Resume.pdf");
  
        // call getFileSystem()
        // and get FileSystem object
        FileSystem fs = path.getFileSystem();
  
        // print FileSystem is ReadOnly or not
        System.out.println("FileSystem is ReadOnly: "
                           + fs.isReadOnly());
    }
}
Producción:

FileSystem is ReadOnly: false

Referencias: https://docs.oracle.com/javase/10/docs/api/java/nio/file/Path.html#getFileSystem()

Publicación traducida automáticamente

Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *