Java I/O How to - Convert Path to String








Question

We would like to know how to convert Path to String.

Answer

/*  w  w w  .  ja  v  a2s.c o m*/
import java.nio.file.FileSystems;
import java.nio.file.Path;

public class Main {

  public static void main(String[] args) {
    Path path = FileSystems.getDefault().getPath("/home/docs/status.txt");

    System.out.println(path.toString());
  }
}

The code above generates the following result.