提取 SFX 7-Zip [英] Extracting SFX 7-Zip

查看:41
本文介绍了提取 SFX 7-Zip的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想从 .zip 文件中提取两个特定文件.我尝试了以下库:

I want to extract two specific files from a .zip file. I tried the following library:

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 扩展名,因此这可能是原因对于失败.

Note that the .zip file is of type SFX 7-zip and initially had the .exe extensions so that may be the reason for the failure.

推荐答案

与评论一样,您的库基本上不支持提取 SFX 7-Zip 文件.但是您可以将 commons compress 和 xz Libary 与快速hack"一起使用:

As in Comments, Extracting SFX 7-Zip file is basically not supported with your library. But you can do with commons compress and xz Libary together with a quick "hack":

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 文件所在的目录相同的目录中!

Please acknowledge that this simple solution does only unpack in to the same directory as the as sfx-file is placed!

这篇关于提取 SFX 7-Zip的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆