FileUtils.java 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. package com.ruoyi.common.utils.file;
  2. import java.io.File;
  3. import java.io.FileInputStream;
  4. import java.io.FileNotFoundException;
  5. import java.io.FileOutputStream;
  6. import java.io.IOException;
  7. import java.io.OutputStream;
  8. import java.io.UnsupportedEncodingException;
  9. import java.net.URLEncoder;
  10. import java.nio.charset.StandardCharsets;
  11. import javax.servlet.http.HttpServletRequest;
  12. import javax.servlet.http.HttpServletResponse;
  13. import org.apache.commons.io.IOUtils;
  14. import org.apache.commons.lang3.ArrayUtils;
  15. import com.ruoyi.common.config.RuoYiConfig;
  16. import com.ruoyi.common.utils.DateUtils;
  17. import com.ruoyi.common.utils.StringUtils;
  18. import com.ruoyi.common.utils.uuid.IdUtils;
  19. /**
  20. * 文件处理工具类
  21. *
  22. * @author ruoyi
  23. */
  24. public class FileUtils
  25. {
  26. public static String FILENAME_PATTERN = "[a-zA-Z0-9_\\-\\|\\.\\u4e00-\\u9fa5]+";
  27. /**
  28. * 输出指定文件的byte数组
  29. *
  30. * @param filePath 文件路径
  31. * @param os 输出流
  32. * @return
  33. */
  34. public static void writeBytes(String filePath, OutputStream os) throws IOException
  35. {
  36. FileInputStream fis = null;
  37. try
  38. {
  39. File file = new File(filePath);
  40. if (!file.exists())
  41. {
  42. throw new FileNotFoundException(filePath);
  43. }
  44. fis = new FileInputStream(file);
  45. byte[] b = new byte[1024];
  46. int length;
  47. while ((length = fis.read(b)) > 0)
  48. {
  49. os.write(b, 0, length);
  50. }
  51. }
  52. catch (IOException e)
  53. {
  54. throw e;
  55. }
  56. finally
  57. {
  58. IOUtils.close(os);
  59. IOUtils.close(fis);
  60. }
  61. }
  62. /**
  63. * 写数据到文件中
  64. *
  65. * @param data 数据
  66. * @return 目标文件
  67. * @throws IOException IO异常
  68. */
  69. public static String writeImportBytes(byte[] data) throws IOException
  70. {
  71. return writeBytes(data, RuoYiConfig.getImportPath());
  72. }
  73. /**
  74. * 写数据到文件中
  75. *
  76. * @param data 数据
  77. * @param uploadDir 目标文件
  78. * @return 目标文件
  79. * @throws IOException IO异常
  80. */
  81. public static String writeBytes(byte[] data, String uploadDir) throws IOException
  82. {
  83. FileOutputStream fos = null;
  84. String pathName = "";
  85. try
  86. {
  87. String extension = getFileExtendName(data);
  88. pathName = DateUtils.datePath() + "/" + IdUtils.fastUUID() + "." + extension;
  89. File file = FileUploadUtils.getAbsoluteFile(uploadDir, pathName);
  90. fos = new FileOutputStream(file);
  91. fos.write(data);
  92. }
  93. finally
  94. {
  95. IOUtils.close(fos);
  96. }
  97. return FileUploadUtils.getPathFileName(uploadDir, pathName);
  98. }
  99. /**
  100. * 删除文件
  101. *
  102. * @param filePath 文件
  103. * @return
  104. */
  105. public static boolean deleteFile(String filePath)
  106. {
  107. boolean flag = false;
  108. File file = new File(filePath);
  109. // 路径为文件且不为空则进行删除
  110. if (file.isFile() && file.exists())
  111. {
  112. file.delete();
  113. flag = true;
  114. }
  115. return flag;
  116. }
  117. /**
  118. * 文件名称验证
  119. *
  120. * @param filename 文件名称
  121. * @return true 正常 false 非法
  122. */
  123. public static boolean isValidFilename(String filename)
  124. {
  125. return filename.matches(FILENAME_PATTERN);
  126. }
  127. /**
  128. * 检查文件是否可下载
  129. *
  130. * @param resource 需要下载的文件
  131. * @return true 正常 false 非法
  132. */
  133. public static boolean checkAllowDownload(String resource)
  134. {
  135. // 禁止目录上跳级别
  136. if (StringUtils.contains(resource, ".."))
  137. {
  138. return false;
  139. }
  140. // 检查允许下载的文件规则
  141. if (ArrayUtils.contains(MimeTypeUtils.DEFAULT_ALLOWED_EXTENSION, FileTypeUtils.getFileType(resource)))
  142. {
  143. return true;
  144. }
  145. // 不在允许下载的文件规则
  146. return false;
  147. }
  148. /**
  149. * 下载文件名重新编码
  150. *
  151. * @param request 请求对象
  152. * @param fileName 文件名
  153. * @return 编码后的文件名
  154. */
  155. public static String setFileDownloadHeader(HttpServletRequest request, String fileName) throws UnsupportedEncodingException
  156. {
  157. final String agent = request.getHeader("USER-AGENT");
  158. String filename = fileName;
  159. if (agent.contains("MSIE"))
  160. {
  161. // IE浏览器
  162. filename = URLEncoder.encode(filename, "utf-8");
  163. filename = filename.replace("+", " ");
  164. }
  165. else if (agent.contains("Firefox"))
  166. {
  167. // 火狐浏览器
  168. filename = new String(fileName.getBytes(), "ISO8859-1");
  169. }
  170. else if (agent.contains("Chrome"))
  171. {
  172. // google浏览器
  173. filename = URLEncoder.encode(filename, "utf-8");
  174. }
  175. else
  176. {
  177. // 其它浏览器
  178. filename = URLEncoder.encode(filename, "utf-8");
  179. }
  180. return filename;
  181. }
  182. /**
  183. * 下载文件名重新编码
  184. *
  185. * @param response 响应对象
  186. * @param realFileName 真实文件名
  187. * @return
  188. */
  189. public static void setAttachmentResponseHeader(HttpServletResponse response, String realFileName) throws UnsupportedEncodingException
  190. {
  191. String percentEncodedFileName = percentEncode(realFileName);
  192. StringBuilder contentDispositionValue = new StringBuilder();
  193. contentDispositionValue.append("attachment; filename=")
  194. .append(percentEncodedFileName)
  195. .append(";")
  196. .append("filename*=")
  197. .append("utf-8''")
  198. .append(percentEncodedFileName);
  199. response.addHeader("Access-Control-Allow-Origin", "*");
  200. response.addHeader("Access-Control-Expose-Headers", "Content-Disposition,download-filename");
  201. response.setHeader("Content-disposition", contentDispositionValue.toString());
  202. response.setHeader("download-filename", percentEncodedFileName);
  203. }
  204. /**
  205. * 百分号编码工具方法
  206. *
  207. * @param s 需要百分号编码的字符串
  208. * @return 百分号编码后的字符串
  209. */
  210. public static String percentEncode(String s) throws UnsupportedEncodingException
  211. {
  212. String encode = URLEncoder.encode(s, StandardCharsets.UTF_8.toString());
  213. return encode.replaceAll("\\+", "%20");
  214. }
  215. /**
  216. * 获取图像后缀
  217. *
  218. * @param photoByte 图像数据
  219. * @return 后缀名
  220. */
  221. public static String getFileExtendName(byte[] photoByte)
  222. {
  223. String strFileExtendName = "jpg";
  224. if ((photoByte[0] == 71) && (photoByte[1] == 73) && (photoByte[2] == 70) && (photoByte[3] == 56)
  225. && ((photoByte[4] == 55) || (photoByte[4] == 57)) && (photoByte[5] == 97))
  226. {
  227. strFileExtendName = "gif";
  228. }
  229. else if ((photoByte[6] == 74) && (photoByte[7] == 70) && (photoByte[8] == 73) && (photoByte[9] == 70))
  230. {
  231. strFileExtendName = "jpg";
  232. }
  233. else if ((photoByte[0] == 66) && (photoByte[1] == 77))
  234. {
  235. strFileExtendName = "bmp";
  236. }
  237. else if ((photoByte[1] == 80) && (photoByte[2] == 78) && (photoByte[3] == 71))
  238. {
  239. strFileExtendName = "png";
  240. }
  241. return strFileExtendName;
  242. }
  243. /**
  244. * 获取名称
  245. *
  246. * @param fileName 路径名称
  247. * @return 没有文件路径的名称
  248. */
  249. public static String getName(String fileName)
  250. {
  251. if (fileName == null)
  252. {
  253. return null;
  254. }
  255. int lastUnixPos = fileName.lastIndexOf('/');
  256. int lastWindowsPos = fileName.lastIndexOf('\\');
  257. int index = Math.max(lastUnixPos, lastWindowsPos);
  258. return fileName.substring(index + 1);
  259. }
  260. }