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


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


isFile()函数是Java中File类的一部分。此函数确定是文件名还是用抽象文件名表示的目录是File。如果抽象文件路径为File,则该函数返回true;否则,返回false。

函数签名:

public boolean isFile()

用法:


file.isFile()

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

返回类型该函数返回表示抽象文件路径是否为file的布尔数据类型

异常:如果对文件的写访问被拒绝,则此方法将引发安全性异常

以下示例程序旨在说明isFile()函数的用法:

范例1:文件“F:\\program.txt”是F:目录中的现有文件。

// Java program to demonstrate 
// isFile() method of File Class 
  
import java.io.*; 
  
public class solution { 
    public static void main(String args[]) 
    { 
  
        // Get the file 
        File f = new File("F:\\program.txt"); 
  
        // Check if the specified file 
        // is File or not 
        if (f.isFile()) 
            System.out.println("File"); 
        else
            System.out.println("Not a File"); 
    } 
}

输出:

File

范例2:文件“F:\\program”是一个目录

// Java program to demonstrate 
// isFile() method of File Class 
  
import java.io.*; 
  
public class solution { 
    public static void main(String args[]) 
    { 
  
        // Get the file 
        File f = new File("F:\\program"); 
  
        // Check if the specified file 
        // is File or not 
        if (f.isFile()) 
            System.out.println("File"); 
        else
            System.out.println("Not a File"); 
    } 
}

输出:

Not a File

注意:程序可能无法在在线IDE中运行。请使用离线IDE并设置文件的路径。



相关用法


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