Get sub path in Java
Description
The following code shows how to get sub path.
Example
import java.net.URI;
import java.nio.file.FileSystems;
import java.nio.file.Path;
import java.nio.file.Paths;
/*w ww. ja v a 2 s . c o m*/
public class Main {
public static void main(String[] args) throws Exception {
Path path = Paths.get("/home", "docs", "users.txt");
System.out.println("subpath: " + path.subpath(0, 3));
}
}
The code above generates the following result.