Get relative path : Paths « JDK 7 « Java
- Java
- JDK 7
- Paths
Get relative path
import java.nio.file.Path;
import java.nio.file.Paths;
public class Test {
public static void main(String[] args) {
Path rootPath = Paths.get("/home/docs");
Path resolvedPath = rootPath.resolve("backup/users.txt");
}
}
Related examples in the same category