当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Path toString()用法及代码示例


Java Path接口已添加到Java 7中的Java NIO中。java.nio.file.Path的toString()方法用于返回此路径的字符串表示形式。如果此路径是通过使用getPath方法转换路径字符串创建的,则此方法返回的路径字符串可能与用于创建路径的原始String不同。通过此方法返回的路径使用默认的name-separator分隔路径中的名称。

用法:

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()



相关用法


注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 Path toString() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。