chenjiahe
2022-08-19 e7c3ff19f5abea1f1510503b46f99c6ad3870410
src/main/java/com/hx/util/ExcelUtil.java
@@ -705,4 +705,18 @@
      return "";
   }
   /**
    * p判断是否excel文件
    * @param file
    * @return
    */
   public static boolean isExcel(MultipartFile file){
      String fileName = file.getOriginalFilename();
      if (!fileName.matches("^.+\\.(?i)(xls)$") && !fileName.matches("^.+\\.(?i)(xlsx)$")) {
         return false;
      }
      return true;
   }
}