共计 390 个字符,预计需要花费 1 分钟才能阅读完成。
在 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。根据返回值,我们可以对路径是否存在进行相应的操作。
丸趣 TV 网 – 提供最优质的资源集合!
正文完