FileUtil.java 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458
  1. package com.shanghaichengdi.ghjgitem.util;
  2. import com.shanghaichengdi.ghjgitem.config.SnowflakeMakeConf;
  3. import java.awt.image.BufferedImage;
  4. import java.io.BufferedOutputStream;
  5. import java.io.ByteArrayOutputStream;
  6. import java.io.DataInputStream;
  7. import java.io.DataOutputStream;
  8. import java.io.File;
  9. import java.io.FileInputStream;
  10. import java.io.FileNotFoundException;
  11. import java.io.FileOutputStream;
  12. import java.io.IOException;
  13. import java.io.InputStream;
  14. import java.io.OutputStream;
  15. import java.io.UnsupportedEncodingException;
  16. import java.net.HttpURLConnection;
  17. import java.net.URL;
  18. import java.net.URLEncoder;
  19. import java.nio.file.Files;
  20. import java.nio.file.Path;
  21. import java.nio.file.Paths;
  22. import java.util.Date;
  23. import java.util.HashMap;
  24. import java.util.Map;
  25. import javax.imageio.ImageIO;
  26. import lombok.extern.slf4j.Slf4j;
  27. import org.springframework.beans.factory.annotation.Autowired;
  28. import org.springframework.core.io.FileSystemResource;
  29. import org.springframework.http.HttpHeaders;
  30. import org.springframework.http.MediaType;
  31. import org.springframework.http.ResponseEntity;
  32. import org.springframework.stereotype.Component;
  33. import org.springframework.util.StringUtils;
  34. import org.springframework.web.multipart.MultipartFile;
  35. import sun.misc.BASE64Decoder;
  36. import sun.misc.BASE64Encoder;
  37. /**
  38. * @program: ghjg-service
  39. * @description: 文件类
  40. * @author: 欧永卿
  41. * @create: 2021-07-08 16:28
  42. **/
  43. @Slf4j
  44. @Component
  45. public class FileUtil {
  46. @Autowired
  47. SnowflakeMakeConf snowflakeMakeConf;
  48. /**
  49. * @param bytes byte数组
  50. * @param filePath 文件路径
  51. * @param fileName 文件名
  52. * @return void
  53. * @Author oyq
  54. * @Description //TODO 将Byte数组转换成文件
  55. * @Date 2021/8/5 17:00
  56. **/
  57. public static File bytesToFile(byte[] bytes, String filePath, String fileName) {
  58. BufferedOutputStream bos = null;
  59. FileOutputStream fos = null;
  60. File file = null;
  61. try {
  62. file = new File(filePath + fileName);
  63. if (!file.getParentFile().exists()) {
  64. //文件夹不存在 生成
  65. file.getParentFile().mkdirs();
  66. }
  67. fos = new FileOutputStream(file);
  68. bos = new BufferedOutputStream(fos);
  69. bos.write(bytes);
  70. } catch (Exception e) {
  71. e.printStackTrace();
  72. } finally {
  73. if (bos != null) {
  74. try {
  75. bos.close();
  76. } catch (IOException e) {
  77. e.printStackTrace();
  78. }
  79. }
  80. if (fos != null) {
  81. try {
  82. fos.close();
  83. } catch (IOException e) {
  84. e.printStackTrace();
  85. }
  86. }
  87. }
  88. return file;
  89. }
  90. /**
  91. * 创建路径
  92. *
  93. * @Author oyq
  94. * @Date 2022/10/28 15:25
  95. **/
  96. public static Path crePath(String filePath) throws IOException {
  97. if (filePath.lastIndexOf(".") != -1) {
  98. String pa = filePath.substring(filePath.lastIndexOf("/"));
  99. filePath = filePath.replace(pa, "");
  100. }
  101. return Files.createDirectories(Paths.get(filePath));
  102. }
  103. /**
  104. * @param fobj 目标文件
  105. * @return byte[]
  106. * @Author oyq
  107. * @Description //TODO 将文件转换为字节流返回
  108. * @Date 2021/8/5 17:02
  109. **/
  110. public static byte[] fileToBytes(File fobj) {
  111. byte[] buffer = null;
  112. try {
  113. if (!fobj.exists()) {
  114. return null;
  115. }
  116. FileInputStream fis = new FileInputStream(fobj);
  117. ByteArrayOutputStream bos = new ByteArrayOutputStream();
  118. byte[] b = new byte[10240];
  119. int len = -1;
  120. while ((len = fis.read(b)) != -1) {
  121. bos.write(b, 0, len);
  122. }
  123. fis.close();
  124. bos.close();
  125. buffer = bos.toByteArray();
  126. } catch (FileNotFoundException e) {
  127. e.printStackTrace();
  128. } catch (IOException e) {
  129. e.printStackTrace();
  130. }
  131. return buffer;
  132. }
  133. /**
  134. * @param path 文件路径
  135. * @return java.lang.String
  136. * @Author oyq
  137. * @Description //TODO 将文件转成base64字符串
  138. * @Date 2021/8/5 17:29
  139. **/
  140. public static String encodeBase64File(String path) throws Exception {
  141. File file = new File(path);
  142. FileInputStream inputFile = new FileInputStream(file);
  143. byte[] buffer = new byte[(int) file.length()];
  144. inputFile.read(buffer);
  145. inputFile.close();
  146. return new BASE64Encoder().encode(buffer);
  147. }
  148. /**
  149. * @param base64Code 目标字符
  150. * @param targetPath 目标路径
  151. * @return void
  152. * @Author oyq
  153. * @Description //TODO 将base64字符解码保存文件
  154. * @Date 2021/8/5 17:29
  155. **/
  156. public static File decoderBase64File(String base64Code, String targetPath) throws Exception {
  157. byte[] buffer = new BASE64Decoder().decodeBuffer(base64Code);
  158. File file = new File(targetPath);
  159. //如果文件不存在则创建
  160. if (!file.exists()) {
  161. try {
  162. file.createNewFile();
  163. } catch (IOException e) {
  164. // TODO Auto-generated catch block
  165. e.printStackTrace();
  166. }
  167. }
  168. FileOutputStream out = new FileOutputStream(targetPath);
  169. out.write(buffer);
  170. out.close();
  171. return new File(targetPath);
  172. }
  173. /**
  174. * @return void
  175. * @Author 欧永卿
  176. * @Description //TODO 下载网络文件到本地
  177. * @Date 16:34 2021-07-08
  178. * @Param [fileUrl, fileLocal]
  179. **/
  180. public static void downloadFile(String fileUrl, String fileLocal) throws Exception {
  181. URL url = new URL(fileUrl);
  182. HttpURLConnection urlCon = (HttpURLConnection) url.openConnection();
  183. urlCon.setConnectTimeout(6000);
  184. urlCon.setReadTimeout(6000);
  185. int code = urlCon.getResponseCode();
  186. if (code != HttpURLConnection.HTTP_OK) {
  187. throw new Exception("文件读取失败");
  188. }
  189. DataInputStream in = new DataInputStream(urlCon.getInputStream());
  190. DataOutputStream out = new DataOutputStream(new FileOutputStream(fileLocal));
  191. byte[] buffer = new byte[2048];
  192. int count = 0;
  193. while ((count = in.read(buffer)) > 0) {
  194. out.write(buffer, 0, count);
  195. }
  196. out.close();
  197. in.close();
  198. }
  199. /**
  200. * @return void
  201. * @Author 欧永卿
  202. * @Description //TODO 选中本地文件以流的方式发送
  203. * @Date 18:05 2021-07-08
  204. * @Param [tourl, fileUrl]
  205. **/
  206. public static String toFileio(String tourl, String fileUrl) throws IOException {
  207. DataInputStream in = null;
  208. OutputStream out = null;
  209. HttpURLConnection conn = null;
  210. InputStream ins = null;
  211. ByteArrayOutputStream outStream = null;
  212. try {
  213. URL url = new URL(tourl);
  214. conn = (HttpURLConnection) url.openConnection();
  215. conn.setDoOutput(true);
  216. conn.setUseCaches(false);
  217. conn.setRequestMethod("POST");
  218. conn.setRequestProperty("Content-Type", "text/html");
  219. conn.setRequestProperty("Cache-Control", "no-cache");
  220. conn.setRequestProperty("Charsert", "UTF-8");
  221. conn.connect();
  222. conn.setConnectTimeout(10000);
  223. out = conn.getOutputStream();
  224. File file = new File(fileUrl);
  225. in = new DataInputStream(new FileInputStream(file));
  226. int bytes = 0;
  227. byte[] buffer = new byte[1024];
  228. while ((bytes = in.read(buffer)) != -1) {
  229. out.write(buffer, 0, bytes);
  230. }
  231. out.flush();
  232. // 返回流
  233. if (true) {
  234. ins = conn.getInputStream();
  235. outStream = new ByteArrayOutputStream();
  236. byte[] data = new byte[1024];
  237. int count;
  238. while ((count = ins.read(data, 0, 1024)) != -1) {
  239. outStream.write(data, 0, count);
  240. }
  241. }
  242. if (outStream == null) {
  243. return null;
  244. }
  245. return outStream.toString("UTF-8");
  246. } catch (Exception e) {
  247. e.printStackTrace();
  248. return e.getMessage();
  249. } finally {
  250. if (in != null) {
  251. in.close();
  252. }
  253. if (out != null) {
  254. out.close();
  255. }
  256. if (ins != null) {
  257. ins.close();
  258. }
  259. if (outStream != null) {
  260. outStream.close();
  261. }
  262. if (conn != null) {
  263. conn.disconnect();
  264. }
  265. }
  266. }
  267. /**
  268. * copy文件并重命名
  269. *
  270. * @return String -1,失败 1成功
  271. * @Author 欧永卿
  272. * @Description //TODO
  273. * @Date 18:39 2021-08-08
  274. * @Param [readfile, writeFile]
  275. **/
  276. public static String copyAndRen(String readfile, String writeFile) {
  277. try {
  278. FileInputStream input = new FileInputStream(readfile);
  279. FileOutputStream output = new FileOutputStream(writeFile);
  280. int read = input.read();
  281. while (read != -1) {
  282. output.write(read);
  283. read = input.read();
  284. }
  285. input.close();
  286. output.close();
  287. return "1";
  288. } catch (IOException e) {
  289. e.printStackTrace();
  290. return "-1";
  291. }
  292. }
  293. public static void copytest(String[] args) {
  294. String path1 = "D:/Users/rambo/Downloads/1.xlsx";//源文件
  295. String dir = "D:/Users/rambo/Downloads/temp/";//指定的文件夹
  296. String fileName = "2.xlsx";//指定的重命名
  297. copyAndRen(path1, dir + fileName);
  298. }
  299. /**
  300. * 图片镜像翻转
  301. *
  302. * @param source 原图片路径
  303. * @param target 翻转后图片输出路径
  304. */
  305. public static void mirrorImage(String source, String target) {
  306. File file;
  307. BufferedImage image;
  308. try {
  309. file = new File(source);
  310. image = ImageIO.read(file);
  311. int width = image.getWidth();
  312. int height = image.getHeight();
  313. for (int j = 0; j < height; j++) {
  314. int l = 0, r = width - 1;
  315. while (l < r) {
  316. int pl = image.getRGB(l, j);
  317. int pr = image.getRGB(r, j);
  318. image.setRGB(l, j, pr);
  319. image.setRGB(r, j, pl);
  320. l++;
  321. r--;
  322. }
  323. }
  324. file = new File(target);
  325. ImageIO.write(image, getSuffix(source), file);
  326. } catch (IOException e) {
  327. e.printStackTrace();
  328. }
  329. }
  330. private static String getSuffix(String fileName) {
  331. return fileName.substring(fileName.lastIndexOf(".") + 1);
  332. }
  333. public static String lastName(File file) {
  334. if (file == null) {
  335. return null;
  336. }
  337. String filename = file.getName();
  338. // split用的是正则,所以需要用 //. 来做分隔符
  339. String[] split = filename.split("\\.");
  340. //注意判断截取后的数组长度,数组最后一个元素是后缀名
  341. if (split.length > 1) {
  342. return split[split.length - 1];
  343. } else {
  344. return "";
  345. }
  346. }
  347. /**
  348. * @return org.springframework.http.ResponseEntity<org.springframework.core.io.FileSystemResource>
  349. * @Author 欧永卿
  350. * @Description //TODO 文件发起下载
  351. * @Date 10:08 2021-07-05
  352. * @Param [file]
  353. **/
  354. public ResponseEntity<FileSystemResource> export(File file) {
  355. if (file == null) {
  356. return null;
  357. }
  358. HttpHeaders headers = new HttpHeaders();
  359. headers.add("Cache-Control", "no-cache, no-store, must-revalidate");
  360. try {
  361. headers.add("Content-Disposition", "attachment; filename=" + String.valueOf(
  362. URLEncoder.encode(file.getAbsolutePath(), "UTF-8")));
  363. } catch (UnsupportedEncodingException e) {
  364. e.printStackTrace();
  365. }
  366. headers.add("Pragma", "no-cache");
  367. headers.add("Expires", "0");
  368. headers.add("Last-Modified", new Date().toString());
  369. headers.add("ETag", String.valueOf(System.currentTimeMillis()));
  370. return ResponseEntity
  371. .ok()
  372. .headers(headers)
  373. .contentLength(file.length())
  374. .contentType(MediaType.parseMediaType("application/octet-stream"))
  375. .body(new FileSystemResource(file));
  376. }
  377. /**
  378. * @param file
  379. * @param savePath
  380. * @return java.util.Map<java.lang.String, java.lang.Object> 文件上传接口的解析,保存。map结构中包含:msg,返回消息.
  381. * newfile,保存的文件(file). old 旧的文件名
  382. * @Author oyq
  383. * @Date 2022/3/23 11:21
  384. **/
  385. public Map<String, Object> upLoadFiles(MultipartFile file, String savePath) {
  386. Map<String, Object> map = new HashMap<>();
  387. Map<String, Object> msgMap = new HashMap<>();
  388. //设置支持最大上传的文件,这里是1024*1024*20=20M
  389. long MAX_SIZE = 20971520L;
  390. //获取要上传文件的名称
  391. String fileName = file.getOriginalFilename();
  392. //如果名称为空,返回一个文件名为空的错误
  393. if (StringUtils.isEmpty(fileName)) {
  394. msgMap.put("code", "0");
  395. msgMap.put("msg", "文件名为空");
  396. return map;
  397. }
  398. //如果文件超过最大值,返回超出可上传最大值的错误
  399. if (file.getSize() > MAX_SIZE) {
  400. msgMap.put("code", "0");
  401. msgMap.put("msg", "文件过大");
  402. return map;
  403. }
  404. //获取到后缀名
  405. String suffixName =
  406. fileName.contains(".") ? fileName.substring(fileName.lastIndexOf(".")) : null;
  407. //文件的保存重新按照雪花算法命名
  408. String newName = snowflakeMakeConf.snowflakeStringId() + suffixName;
  409. File newFile = new File(savePath, newName);
  410. if (!newFile.getParentFile().exists()) {
  411. newFile.getParentFile().mkdirs();
  412. }
  413. try {
  414. //文件写入
  415. file.transferTo(newFile);
  416. } catch (IOException e) {
  417. e.printStackTrace();
  418. }
  419. msgMap.put("code", "200");
  420. msgMap.put("msg", "数据上传成功");
  421. map.put("newfile", newFile);
  422. map.put("oldfileName", fileName);
  423. log.info(fileName + ",文件上传到" + newFile.getPath());
  424. return map;
  425. }
  426. }