共计 407 个字符,预计需要花费 2 分钟才能阅读完成。
在 Java 中,可以使用 File
类的 exists()
方法来判断一个文件是否存在。该方法返回一个布尔值,如果文件存在则返回 true
,否则返回false
。
下面是一个示例代码,演示如何判断文件是否存在:
import java.io.File;
public class FileExistExample {public static void main(String[] args) {
String filePath = "C:/path/to/file.txt";
File file = new File(filePath);
if (file.exists()) {System.out.println("文件存在");
} else {System.out.println("文件不存在");
}
}
}
上述代码中,我们首先创建一个 File
对象,指定文件路径。然后使用 exists()
方法来判断文件是否存在,根据返回值输出对应的信息。
丸趣 TV 网 – 提供最优质的资源集合!
正文完