Java Path.isAbsolute()
Syntax
Path.isAbsolute() has the following syntax.
boolean isAbsolute()
Example
In the following code shows how to use Path.isAbsolute() method.
//from w w w . ja va 2s .c o 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.isAbsolute());
}
}
The code above generates the following result.