Java IO Tutorial - Java FileSystem.getSeparator()








Syntax

FileSystem.getSeparator() has the following syntax.

public abstract String getSeparator()

Example

In the following code shows how to use FileSystem.getSeparator() method.

// w w  w.ja  v a2  s. c  om
import java.io.IOException;
import java.nio.file.FileSystem;
import java.nio.file.FileSystems;

public class Main {

  public static void main(String[] args) throws IOException {
    FileSystem fileSystem = FileSystems.getDefault();
     System.out.println(fileSystem.getSeparator());
  }
}

The code above generates the following result.