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


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


Java Path接口已添加到Java 7中的Java NIO中。java.nio.file.Path的toAbsolutePath()方法用于返回表示该路径对象的绝对路径的Path对象。如果该路径已经是绝对路径,则该方法返回path,否则该方法通过针对文件系统默认目录解析路径以implementation-dependent方式解析此路径。根据实现的不同,如果无法访问文件系统,则此方法可能会引发I /O错误。

用法:

int toAbsolutePath()

参数:此方法不接受任何内容。


返回值:此方法返回代表绝对路径的Path对象。

异常:此方法引发以下异常:

  • IOError–如果发生I /O错误
  • SecurityException–对于默认提供程序,则安装了安全管理器,并且此路径不是绝对路径,则安全管理器的路径
  • checkPropertyAccess调用方法以检查对系统属性user.dir的访问

以下示例程序旨在说明toAbsolutePath()方法:
示例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) 
    { 
  
        // create object of Path 
        Path path = Paths.get("\\temp\\Spring"); 
  
        // call toAbsolutePath() to get 
        // absolute path 
        Path absPath = path.toAbsolutePath(); 
  
        // print absolute path 
        System.out.println("Absolute Path: "
                           + absPath); 
    } 
}
输出:

示例2:

// Java program to demonstrate 
// java.nio.file.Path.toAbsolutePath() method 
  
import java.io.IOException; 
import java.nio.file.Path; 
import java.nio.file.Paths; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create object of Path 
        Path path = Paths.get("Program Files\\Java"); 
  
        // call toAbsolutePath() to get 
        // absolute path 
        Path absPath= path.toAbsolutePath(); 
  
        // print absolute path 
        System.out.println("Absolute Path: "
                           + absPath); 
    } 
}
输出:

参考文献: https://docs.oracle.com/javase/10/docs/api/java/nio/file/Path.html#toAbsolutePath()



相关用法


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