Java IO Tutorial - Java Path.toString()








Syntax

Path.toString() has the following syntax.

String toString()

Example

In the following code shows how to use Path.toString() method.

/*  w  ww  .ja v a 2 s.  c  o m*/
import java.nio.file.Path;
import java.nio.file.Paths;

public class Main {

    public static void main(String[] args) {

        Path path = Paths.get("C:", "tutorial/Java/JavaFX", "Topic.txt");

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

The code above generates the following result.