Java中的 File isFile() 方法及示例
isFile()函数是Java中 File 类的一部分。该函数确定是文件还是抽象文件名表示的目录是文件。如果抽象文件路径是 File,则该函数返回 true,否则返回 false。
函数签名:
public boolean isFile()
句法:
file.isFile()
参数:此方法不接受任何参数。
返回类型函数返回布尔数据类型,表示抽象文件路径是否为文件
异常:如果拒绝对文件的写访问,此方法将引发安全异常
下面的程序说明了 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 并设置文件路径。