Convert Path to String in Java
Description
The following code shows how to convert Path to String.
Example
//from w ww. ja va 2s .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.