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


Java File isAbsolute()用法及代码示例


isAbsolute()方法是File类的一部分。该函数返回抽象路径名是否为绝对路径。

例如:如果我们使用“program.txt”路径创建文件对象,则该文件对象指向存在于可执行程序所在目录的文件(如果使用的是IDE,它将指向保存程序的文件) )。这里上面提到的文件的路径是“program.txt”,但是该路径不是绝对路径(即不完整)。绝对路径是根目录的完整路径。

函数签名:


public boolean isAbsolute()

函数语法:

file.isAbsolute()

参数:该函数不接受任何参数。

返回值:该函数返回布尔值,该值指示抽象路径名是否是绝对路径。

下面的程序将说明isAbsolute()函数的用法

范例1:给我们一个文件的文件对象,我们必须检查它是否是绝对的

// Java program to demonstrate the 
// use of isAbsolute() function 
  
import java.io.*; 
  
public class solution { 
    public static void main(String args[]) 
    { 
        // try-catch block to handle exceptions 
        try { 
  
            // Create a file object 
            File f = new File("c:\\users\\program.txt"); 
  
            // Check if the given path 
            // is absolute or not 
            if (f.isAbsolute()) { 
  
                // Display that the path is absolute 
                // as the function returned true 
                System.out.println("The path is absolute"); 
            } 
            else { 
  
                // Display that the path is not absolute 
                // as the function returned false 
                System.out.println("The path is not absolute"); 
            } 
        } 
        catch (Exception e) { 
            System.err.println(e.getMessage()); 
        } 
    } 
}

输出:

The path is absolute

范例2:给我们一个文件的文件对象,我们必须检查它是否是绝对的

// Java program to demonstrate the 
// use of isAbsolute() function 
  
import java.io.*; 
  
public class solution { 
    public static void main(String args[]) 
    { 
        // try-catch block to handle exceptions 
        try { 
  
            // Create a file object 
            File f = new File("program.txt"); 
  
            // Check if the given path 
            // is absolute or not 
            if (f.isAbsolute()) { 
  
                // Display that the path is absolute 
                // as the function returned true 
                System.out.println("The path is absolute"); 
            } 
            else { 
  
                // Display that the path is not absolute 
                // as the function returned false 
                System.out.println("The path is not absolute"); 
            } 
        } 
        catch (Exception e) { 
            System.err.println(e.getMessage()); 
        } 
    } 
}

输出:

The path is not absolute

这些程序可能无法在在线IDE中运行。请使用离线IDE并设置文件的父文件



相关用法


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