Combining paths using path resolution : Paths « JDK 7 « Java
- Java
- JDK 7
- Paths
Combining paths using path resolution
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 partialPath = Paths.get("users.txt");
Path resolvedPath = rootPath.resolve(partialPath);
}
}
Related examples in the same category