Get relative path in Java

Description

The following code shows how to get relative path.

Example


//from   ww  w.j  a  v a2s .c  om
import java.nio.file.Path;
import java.nio.file.Paths;

public class Main {

  public static void main(String[] args) {
    Path rootPath = Paths.get("/home/docs");
    System.out.println(rootPath);
    Path resolvedPath = rootPath.resolve("backup/users.txt");
    System.out.println(resolvedPath);
    
  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    I/O »




Binary File
Byte Array
CharSet
Checksum
Console
Create Copy Move Delete
Directory
Drive
Encode Decode
File Attribute
File Lock
File System
GZIP
Jar File
NIO Buffer
Path
Scanner
StreamTokenizer
Temporary File
Text File
Zip