Get absolute path : Paths « JDK 7 « Java
- Java
- JDK 7
- Paths
Get absolute path
import java.nio.file.Path;
import java.nio.file.Paths;
public class Test {
public static void main(String[] args) throws Exception {
Path path = Paths.get("users.txt");
System.out.println("Absolute path: " + path.toAbsolutePath());
}
}
Related examples in the same category