FileUploadUtils.java 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. package com.ruoyi.common.utils.file;
  2. import java.io.File;
  3. import java.io.IOException;
  4. import java.nio.file.Paths;
  5. import java.util.Objects;
  6. import com.ruoyi.common.utils.ChineseCharacterUtil;
  7. import org.apache.commons.io.FilenameUtils;
  8. import org.springframework.web.multipart.MultipartFile;
  9. import com.ruoyi.common.config.RuoYiConfig;
  10. import com.ruoyi.common.constant.Constants;
  11. import com.ruoyi.common.exception.file.FileNameLengthLimitExceededException;
  12. import com.ruoyi.common.exception.file.FileSizeLimitExceededException;
  13. import com.ruoyi.common.exception.file.InvalidExtensionException;
  14. import com.ruoyi.common.utils.DateUtils;
  15. import com.ruoyi.common.utils.StringUtils;
  16. import com.ruoyi.common.utils.uuid.Seq;
  17. /**
  18. * 文件上传工具类
  19. *
  20. * @author ruoyi
  21. */
  22. public class FileUploadUtils
  23. {
  24. /**
  25. * 默认大小 50M 修改为 1GB
  26. */
  27. public static final long DEFAULT_MAX_SIZE = 1024 * 1024 * 1024; // 50 * 1024 * 1024
  28. /**
  29. * 默认的文件名最大长度 100
  30. */
  31. public static final int DEFAULT_FILE_NAME_LENGTH = 100;
  32. /**
  33. * 默认上传的地址
  34. */
  35. private static String defaultBaseDir = RuoYiConfig.getProfile();
  36. public static void setDefaultBaseDir(String defaultBaseDir)
  37. {
  38. FileUploadUtils.defaultBaseDir = defaultBaseDir;
  39. }
  40. public static String getDefaultBaseDir()
  41. {
  42. return defaultBaseDir;
  43. }
  44. /**
  45. * 以默认配置进行文件上传
  46. *
  47. * @param file 上传的文件
  48. * @return 文件名称
  49. * @throws Exception
  50. */
  51. public static final String upload(MultipartFile file) throws IOException
  52. {
  53. try
  54. {
  55. return upload(getDefaultBaseDir(), file, MimeTypeUtils.DEFAULT_ALLOWED_EXTENSION);
  56. }
  57. catch (Exception e)
  58. {
  59. throw new IOException(e.getMessage(), e);
  60. }
  61. }
  62. /**
  63. * 根据文件路径上传
  64. *
  65. * @param baseDir 相对应用的基目录
  66. * @param file 上传的文件
  67. * @return 文件名称
  68. * @throws IOException
  69. */
  70. public static final String upload(String baseDir, MultipartFile file) throws IOException
  71. {
  72. try
  73. {
  74. return upload(baseDir, file, MimeTypeUtils.DEFAULT_ALLOWED_EXTENSION);
  75. }
  76. catch (Exception e)
  77. {
  78. throw new IOException(e.getMessage(), e);
  79. }
  80. }
  81. /**
  82. * 文件上传
  83. *
  84. * @param baseDir 相对应用的基目录
  85. * @param file 上传的文件
  86. * @param allowedExtension 上传文件类型
  87. * @return 返回上传成功的文件名
  88. * @throws FileSizeLimitExceededException 如果超出最大大小
  89. * @throws FileNameLengthLimitExceededException 文件名太长
  90. * @throws IOException 比如读写文件出错时
  91. * @throws InvalidExtensionException 文件校验异常
  92. */
  93. public static final String upload(String baseDir, MultipartFile file, String[] allowedExtension)
  94. throws FileSizeLimitExceededException, IOException, FileNameLengthLimitExceededException,
  95. InvalidExtensionException
  96. {
  97. int fileNamelength = Objects.requireNonNull(file.getOriginalFilename()).length();
  98. if (fileNamelength > FileUploadUtils.DEFAULT_FILE_NAME_LENGTH)
  99. {
  100. throw new FileNameLengthLimitExceededException(FileUploadUtils.DEFAULT_FILE_NAME_LENGTH);
  101. }
  102. assertAllowed(file, allowedExtension);
  103. String fileName = extractFilename(file);
  104. String absPath = getAbsoluteFile(baseDir, fileName).getAbsolutePath();
  105. file.transferTo(Paths.get(absPath));
  106. return getPathFileName(baseDir, fileName);
  107. }
  108. /**
  109. * 编码文件名
  110. */
  111. public static final String extractFilename(MultipartFile file)
  112. {
  113. return StringUtils.format("{}/{}_{}.{}", DateUtils.datePath(),
  114. ChineseCharacterUtil.convertHanzi2Pinyin(FilenameUtils.getBaseName(file.getOriginalFilename()), false), Seq.getId(Seq.uploadSeqType), getExtension(file));
  115. }
  116. public static final File getAbsoluteFile(String uploadDir, String fileName) throws IOException
  117. {
  118. File desc = new File(uploadDir + File.separator + fileName);
  119. if (!desc.exists())
  120. {
  121. if (!desc.getParentFile().exists())
  122. {
  123. desc.getParentFile().mkdirs();
  124. }
  125. }
  126. return desc;
  127. }
  128. public static final String getPathFileName(String uploadDir, String fileName) throws IOException
  129. {
  130. int dirLastIndex = RuoYiConfig.getProfile().length() + 1;
  131. String currentDir = StringUtils.substring(uploadDir, dirLastIndex);
  132. return Constants.RESOURCE_PREFIX + "/" + currentDir + "/" + fileName;
  133. }
  134. /**
  135. * 文件大小校验
  136. *
  137. * @param file 上传的文件
  138. * @return
  139. * @throws FileSizeLimitExceededException 如果超出最大大小
  140. * @throws InvalidExtensionException
  141. */
  142. public static final void assertAllowed(MultipartFile file, String[] allowedExtension)
  143. throws FileSizeLimitExceededException, InvalidExtensionException
  144. {
  145. long size = file.getSize();
  146. if (size > DEFAULT_MAX_SIZE)
  147. {
  148. throw new FileSizeLimitExceededException(DEFAULT_MAX_SIZE / 1024 / 1024);
  149. }
  150. String fileName = file.getOriginalFilename();
  151. String extension = getExtension(file);
  152. if (allowedExtension != null && !isAllowedExtension(extension, allowedExtension))
  153. {
  154. if (allowedExtension == MimeTypeUtils.IMAGE_EXTENSION)
  155. {
  156. throw new InvalidExtensionException.InvalidImageExtensionException(allowedExtension, extension,
  157. fileName);
  158. }
  159. else if (allowedExtension == MimeTypeUtils.FLASH_EXTENSION)
  160. {
  161. throw new InvalidExtensionException.InvalidFlashExtensionException(allowedExtension, extension,
  162. fileName);
  163. }
  164. else if (allowedExtension == MimeTypeUtils.MEDIA_EXTENSION)
  165. {
  166. throw new InvalidExtensionException.InvalidMediaExtensionException(allowedExtension, extension,
  167. fileName);
  168. }
  169. else if (allowedExtension == MimeTypeUtils.VIDEO_EXTENSION)
  170. {
  171. throw new InvalidExtensionException.InvalidVideoExtensionException(allowedExtension, extension,
  172. fileName);
  173. }
  174. else
  175. {
  176. throw new InvalidExtensionException(allowedExtension, extension, fileName);
  177. }
  178. }
  179. }
  180. /**
  181. * 判断MIME类型是否是允许的MIME类型
  182. *
  183. * @param extension
  184. * @param allowedExtension
  185. * @return
  186. */
  187. public static final boolean isAllowedExtension(String extension, String[] allowedExtension)
  188. {
  189. for (String str : allowedExtension)
  190. {
  191. if (str.equalsIgnoreCase(extension))
  192. {
  193. return true;
  194. }
  195. }
  196. return false;
  197. }
  198. /**
  199. * 获取文件名的后缀
  200. *
  201. * @param file 表单文件
  202. * @return 后缀名
  203. */
  204. public static final String getExtension(MultipartFile file)
  205. {
  206. String extension = FilenameUtils.getExtension(file.getOriginalFilename());
  207. if (StringUtils.isEmpty(extension))
  208. {
  209. extension = MimeTypeUtils.getExtension(Objects.requireNonNull(file.getContentType()));
  210. }
  211. return extension;
  212. }
  213. }