Java Path.getRoot()
Syntax
Path.getRoot() has the following syntax.
Path getRoot()
Example
In the following code shows how to use Path.getRoot() method.
//from ww w .j av a 2 s . co m
import java.nio.file.Path;
import java.nio.file.Paths;
public class Main {
public static void main(String[] args) {
Path path = Paths.get("C:", "tutorial/Java/JavaFX", "Topic.txt");
System.out.println(path.getRoot());
}
}
The code above generates the following result.