cn.hutool.core.io.FileUtil.exist()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(1.9k)|赞(0)|评价(0)|浏览(1021)

本文整理了Java中cn.hutool.core.io.FileUtil.exist()方法的一些代码示例,展示了FileUtil.exist()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。FileUtil.exist()方法的具体详情如下:
包路径:cn.hutool.core.io.FileUtil
类名称:FileUtil
方法名:exist

FileUtil.exist介绍

[英]判断文件是否存在,如果file为null,则返回false
[中]判断文件是否存在,如果文件为无效的则返回错误的

代码示例

代码示例来源:origin: looly/hutool

/**
 * 指定文件最后修改时间
 * 
 * @param file 文件
 * @return 最后修改时间
 */
public static Date lastModifiedTime(File file) {
  if (!exist(file)) {
    return null;
  }
  return new Date(file.lastModified());
}

代码示例来源:origin: looly/hutool

/**
 * 指定文件最后修改时间
 * 
 * @param file 文件
 * @return 最后修改时间
 */
public static Date lastModifiedTime(File file) {
  if (!exist(file)) {
    return null;
  }
  return new Date(file.lastModified());
}

代码示例来源:origin: looly/hutool

/**
   * 创建{@link XWPFDocument},如果文件已存在则读取之,否则创建新的
   * 
   * @param file docx文件
   * @return {@link XWPFDocument}
   */
  public static XWPFDocument create(File file) {
    try {
      return FileUtil.exist(file) ? new XWPFDocument(OPCPackage.open(file)) : new XWPFDocument();
    } catch (InvalidFormatException e) {
      throw new POIException(e);
    } catch (IOException e) {
      throw new IORuntimeException(e);
    }
  }
}

代码示例来源:origin: looly/hutool

/**
   * 创建{@link XWPFDocument},如果文件已存在则读取之,否则创建新的
   * 
   * @param file docx文件
   * @return {@link XWPFDocument}
   */
  public static XWPFDocument create(File file) {
    try {
      return FileUtil.exist(file) ? new XWPFDocument(OPCPackage.open(file)) : new XWPFDocument();
    } catch (InvalidFormatException e) {
      throw new POIException(e);
    } catch (IOException e) {
      throw new IORuntimeException(e);
    }
  }
}

代码示例来源:origin: cn.hutool/hutool-all

/**
 * 指定文件最后修改时间
 * 
 * @param file 文件
 * @return 最后修改时间
 */
public static Date lastModifiedTime(File file) {
  if (!exist(file)) {
    return null;
  }
  return new Date(file.lastModified());
}

代码示例来源:origin: cn.hutool/hutool-all

/**
   * 创建{@link XWPFDocument},如果文件已存在则读取之,否则创建新的
   * 
   * @param file docx文件
   * @return {@link XWPFDocument}
   */
  public static XWPFDocument create(File file) {
    try {
      return FileUtil.exist(file) ? new XWPFDocument(OPCPackage.open(file)) : new XWPFDocument();
    } catch (InvalidFormatException e) {
      throw new POIException(e);
    } catch (IOException e) {
      throw new IORuntimeException(e);
    }
  }
}

相关文章