Java Path.toAbsolutePath()
Syntax
Path.toAbsolutePath() has the following syntax.
Path toAbsolutePath()
Example
In the following code shows how to use Path.toAbsolutePath() method.
//from w w w .j av a 2s . c om
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");
//convert relative path to absolute path
Path path_to_absolute_path = path.toAbsolutePath();
System.out.println("Path to absolute path: " + path_to_absolute_path.toString());
}
}
The code above generates the following result.