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.
//from w w w . ja va 2 s .c o m
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.