Java I/O How to - Get sub path








Question

We would like to know how to get sub path.

Answer

import java.net.URI;
import java.nio.file.FileSystems;
import java.nio.file.Path;
import java.nio.file.Paths;
//w  w w  .  ja va2s  .  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.