Java Path toString()方法及示例
java.nio.file.Path 的 toString() 方法用于返回该路径的字符串表示。如果这个路径是通过使用getPath方法转换路径字符串创建的,那么这个方法返回的路径字符串可能与创建路径时使用的原始String不同。此方法返回的路径使用默认的名称分隔符来分隔路径中的名称。
语法
String toString()
参数: 此方法不接受任何东西。
返回值: 该方法返回该路径的字符串表示。
下面的程序说明了toString()方法:
程序1 :
// Java program to demonstrate
// java.nio.file.Path.toAbsolute() method
import java.io.IOException;
import java.nio.file.Path;
import java.nio.file.Paths;
public class GFG {
public static void main(String[] args)
throws IOException
{
// create object of Path
Path path
= Paths.get("C:\\Program Files\\"
+ "Java\\jre1.8.0_211");
// print path
System.out.println("Path: "
+ path.toString());
}
}
输出:
Path: C:\Program Files\Java\jre1.8.0_211
程序2
// Java program to demonstrate
// java.nio.file.Path.toString() method
import java.io.IOException;
import java.nio.file.Path;
import java.nio.file.Paths;
public class GFG {
public static void main(String[] args)
throws IOException
{
// create object of Path
Path path
= Paths.get("C:\\Users\\"
+ "asingh.one\\Documents");
// print path
System.out.println("Path: "
+ path.toString());
}
}
输出:
Path: C:\Users\asingh.one\Documents
参考文献: https://docs.oracle.com/javase/10/docs/api/java/nio/file/Path.html#toString()