阅读量:2
在Java中,可以使用File类的exists()方法来判断路径是否存在。具体代码如下:
import java.io.File; public class PathExist { public static void main(String[] args) { String path = "C:\\path\\to\\file.txt"; File file = new File(path); if (file.exists()) { System.out.println("路径存在"); } else { System.out.println("路径不存在"); } } }
在上述代码中,我们创建一个File对象,传入要判断的路径,然后使用exists()方法来判断路径是否存在。如果路径存在,exists()方法会返回true,否则返回false。根据返回值,我们可以对路径是否存在进行相应的操作。