在Java中,可以使用java.io.File
類的exists()
方法來判斷文件是否存在。
import java.io.File;
public class Main {
public static void main(String[] args) {
String filePath = "path/to/file.csv";
File file = new File(filePath);
if (file.exists()) {
System.out.println("文件存在");
} else {
System.out.println("文件不存在");
}
}
}
在上面的示例中,我們首先創建一個File
對象,傳入要判斷的文件路徑。然后調用exists()
方法來判斷文件是否存在。如果文件存在,輸出"文件存在";如果文件不存在,輸出"文件不存在"。