Извлечение SFX 7-Zip

Я хочу извлечь два конкретных файла из .zip файл. Я попробовал следующую библиотеку:

ZipFile zipFile = new ZipFile("myZip.zip");

Результат:

Exception in thread "main" java.util.zip.ZipException: error in opening zip file

Я также попробовал:

public void extract(String targetFileName) throws IOException
{
    OutputStream outputStream = new FileOutputStream("targetFile.foo");
    FileInputStream fileInputStream = new FileInputStream("myZip.zip");
    ZipInputStream zipInputStream = new ZipInputStream(new BufferedInputStream(fileInputStream));
    ZipEntry zipEntry;

    while ((zipEntry = zipInputStream.getNextEntry()) != null)
    {
        if (zipEntry.getName().equals("targetFile.foo"))
        {
            byte[] buffer = new byte[8192];
            int length;
            while ((length = zipInputStream.read(buffer)) != -1)
            {
                outputStream.write(buffer, 0, length);
            }
            outputStream.close();
            break;
        }
    }
}

Результат:
Не исключение, но пустой targetFile.foo файл.

Обратите внимание, что .zip файл имеет тип SFX 7-zip и изначально имел .exe расширения, так что это может быть причиной отказа.

0 ответов

Как и в комментариях, распаковка файла SFX 7-Zip в вашей библиотеке в основном не поддерживается. Но вы можете сделать это с помощью commons compress и xz Libary вместе с быстрым "взломом":

import org.apache.commons.compress.archivers.sevenz.SevenZArchiveEntry;
import org.apache.commons.compress.archivers.sevenz.SevenZFile;
import org.apache.commons.io.FileUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
...
  protected File un7zSFXFile(File file, String password)
      {
        SevenZFile sevenZFile = null;
        File tempFile = new File("/tmp/" + file.getName() + ".temp");
        try
        {
          FileInputStream in = new FileInputStream(file);
          /**
           * Yes this is Voodoo Code:
           * first 205824 Bytes get skipped as these is are basically the 7z-sfx-runnable.dll
           * common-compress does fail if this information is not cut away
           * ATTENTION: the amount of bytes may vary depending of the 7z Version used!
           */
          in.skip(205824);
          // EndOfVoodoCode
          tempFile.getParentFile().mkdirs();
          tempFile.createNewFile();
          FileOutputStream temp = new FileOutputStream(tempFile);
          byte[] buffer = new byte[1024];
          int length;
          while((length = in.read(buffer)) > 0)
          {
            temp.write(buffer, 0, length);
          }
          temp.close();
          in.close();
          LOGGER.info("prepared exefile for un7zing");
          if (password!=null) {
          sevenZFile = new SevenZFile(tempFile, password.toCharArray());
          } else {
            sevenZFile = new SevenZFile(tempFile);
          }
          SevenZArchiveEntry entry;
          boolean first = true;// accept only files with
          while((entry = sevenZFile.getNextEntry()))
          {
            if(entry.isDirectory())
            {
              continue;
            }
            File curfile = new File(file.getParentFile(), entry.getName());
            File parent = curfile.getParentFile();
            if(!parent.exists())
            {
              parent.mkdirs();
            }
            FileOutputStream out = new FileOutputStream(curfile);
            byte[] content = new byte[(int) entry.getSize()];
            sevenZFile.read(content, 0, content.length);
            out.write(content);
            out.close();
          }
        }
        catch(Exception e)
        {          
          throw e;
        }
        finally
        {
          try
          {
            tempFile.delete();
            sevenZFile.close();
    
          }
          catch(Exception e)
          {
            LOGGER.trace("error on cloasing Stream: " + sevenZFile.getDefaultName(), e);
          }
        }
      }

Пожалуйста, примите во внимание, что это простое решение выполняет распаковку только в тот же каталог, где размещается as sfx-файл!

Другие вопросы по тегам