java判断路径、文件、文件夹是否存在

import java.io.File;

/**
* 判断指定路径的文件是否存在
*/
public class IsFileExists {

/**
* @param args
*/
public static void main(String[] args) {
  File file = new File("D://test//behind.rar");
  if (file.exists()) {
    System.out.println("文件:" + file.getPath() + "|||||存在");
  } else {
    System.out.println("文件:" + file.getPath() + "|||||不存在!");
  }
}

  

上一篇:西北乱跑娃 --- bottle


下一篇:.class.getResource("/").getPath() java.io.IOExcept