在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()
方法來判斷文件是否存在,根據返回值輸出對應的信息。