All Downloads are FREE. Search and download functionalities are using the official Maven repository.

top.doudou.common.tool.file.MultipartFileUtils Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
package top.doudou.common.tool.file;

import org.springframework.web.multipart.MultipartFile;
import top.doudou.base.exception.CustomException;


/**
 * @author  傻男人<[email protected]>
 * @Date: 2020/3/27
 * @Description:  MultipartFile工具类
 */
public class MultipartFileUtils {

    /**
     * 判断文件是否为空
     * @param file
     * @return
     */
    public static boolean isEmpty(MultipartFile file){
        if(file == null || file.isEmpty() || file.getSize() == 0){
            return true;
        }
        return false;
    }

    public static void checkEmpty(MultipartFile file){
        if(isEmpty(file))
            throw new CustomException("文件不存在或者文件已损坏");
    }

    /**
     * 获取文件类型
     * @param file
     * @return
     */
    public static String getFileType(MultipartFile file){
        return file.getOriginalFilename().substring(file.getOriginalFilename().lastIndexOf(".")+1);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy