CompressFileReader.java 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. package cn.keking.service;
  2. import cn.keking.config.ConfigConstants;
  3. import cn.keking.model.FileType;
  4. import cn.keking.utils.RarUtils;
  5. import cn.keking.web.filter.BaseUrlFilter;
  6. import net.sf.sevenzipjbinding.ExtractOperationResult;
  7. import net.sf.sevenzipjbinding.IInArchive;
  8. import net.sf.sevenzipjbinding.SevenZip;
  9. import net.sf.sevenzipjbinding.SevenZipException;
  10. import net.sf.sevenzipjbinding.impl.RandomAccessFileInStream;
  11. import net.sf.sevenzipjbinding.simple.ISimpleInArchive;
  12. import net.sf.sevenzipjbinding.simple.ISimpleInArchiveItem;
  13. import org.apache.commons.io.IOUtils;
  14. import org.springframework.stereotype.Component;
  15. import org.springframework.util.ObjectUtils;
  16. import java.io.*;
  17. import java.nio.charset.StandardCharsets;
  18. import java.util.ArrayList;
  19. import java.util.List;
  20. /**
  21. * @author yudian-it
  22. * create 2017/11/27
  23. */
  24. @Component
  25. public class CompressFileReader {
  26. private final FileHandlerService fileHandlerService;
  27. private static final String fileDir = ConfigConstants.getFileDir();
  28. public CompressFileReader(FileHandlerService fileHandlerService) {
  29. this.fileHandlerService = fileHandlerService;
  30. }
  31. public String unRar(String filePath, String filePassword, String fileName, String fileKey) throws Exception {
  32. List<String> imgUrls = new ArrayList<>();
  33. String baseUrl = BaseUrlFilter.getBaseUrl();
  34. String packagePath = "_"; //防止文件名重复 压缩包统一生成文件添加_符号
  35. String folderName = filePath.replace(fileDir, ""); //修复压缩包 多重目录获取路径错误
  36. if (!ObjectUtils.isEmpty(fileKey)) { //压缩包文件 直接赋予路径 不予下载
  37. folderName = "_decompression"+folderName; //重新修改多重压缩包 生成文件路径
  38. }
  39. RandomAccessFile randomAccessFile = null;
  40. IInArchive inArchive = null;
  41. try {
  42. randomAccessFile = new RandomAccessFile(filePath, "r");
  43. inArchive = SevenZip.openInArchive(null, new RandomAccessFileInStream(randomAccessFile));
  44. ISimpleInArchive simpleInArchive = inArchive.getSimpleInterface();
  45. final String[] str = {null};
  46. for (final ISimpleInArchiveItem item : simpleInArchive.getArchiveItems()) {
  47. if (!item.isFolder()) {
  48. ExtractOperationResult result;
  49. String finalFolderName = folderName;
  50. result = item.extractSlow(data -> {
  51. try {
  52. str[0] = RarUtils.getUtf8String(item.getPath());
  53. if (RarUtils.isMessyCode(str[0])){
  54. str[0] = new String(item.getPath().getBytes(StandardCharsets.ISO_8859_1), "gbk");
  55. }
  56. str[0] = str[0].replace("\\", File.separator); //Linux 下路径错误
  57. String str1 = str[0].substring(0, str[0].lastIndexOf(File.separator)+ 1);
  58. File file = new File(fileDir, finalFolderName + packagePath + File.separator + str1);
  59. if (!file.exists()) {
  60. file.mkdirs();
  61. }
  62. OutputStream out = new FileOutputStream( fileDir+ finalFolderName + packagePath + File.separator + str[0], true);
  63. IOUtils.write(data, out);
  64. out.close();
  65. } catch (Exception e) {
  66. e.printStackTrace();
  67. return Integer.parseInt(null);
  68. }
  69. return data.length;
  70. }, filePassword);
  71. if (result == ExtractOperationResult.OK) {
  72. FileType type = FileType.typeFromUrl(str[0]);
  73. if (type.equals(FileType.PICTURE)) {
  74. imgUrls.add(baseUrl +folderName + packagePath +"/" + str[0].replace("\\", "/"));
  75. }
  76. fileHandlerService.putImgCache(fileName+ packagePath, imgUrls);
  77. } else {
  78. return null;
  79. }
  80. }
  81. }
  82. return folderName + packagePath;
  83. } catch (Exception e) {
  84. throw new Exception(e);
  85. } finally {
  86. if (inArchive != null) {
  87. try {
  88. inArchive.close();
  89. } catch (SevenZipException e) {
  90. System.err.println("Error closing archive: " + e);
  91. }
  92. }
  93. if (randomAccessFile != null) {
  94. try {
  95. randomAccessFile.close();
  96. } catch (IOException e) {
  97. System.err.println("Error closing file: " + e);
  98. }
  99. }
  100. }
  101. }
  102. }