管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-10-11 03abc40237d5facd7a24628ed6afe0a014b49e1b
src/main/java/com/lf/server/helper/FileHelper.java
@@ -11,9 +11,6 @@
    /**
     * 获取文件扩展名
     *
     * @param file 文件
     * @return
     */
    public static String getExtension(File file) {
        if (file == null) {
@@ -30,6 +27,21 @@
        return fileName.substring(idx);
    }
    /**
     * 获取文件扩展名
     */
    public static String getExtension(String fileName) {
        if (StringHelper.isEmpty(fileName)) {
            return "";
        }
        int idx = fileName.lastIndexOf(POINT);
        if (idx == -1) {
            return "";
        }
        return fileName.substring(idx).toLowerCase();
    }
    /**
     * 获取多用途互联网邮件扩展类型