解压缩saz文件java

时间:2012-07-30 17:40:44

标签: java

我正在查看java文档,似乎没有办法专门解压缩saz文件,这些文件是由网络代理Fiddler创建的会话存档。任何人都知道如何做到这一点?

3 个答案:

答案 0 :(得分:2)

根据this,它是常规ZIP,具有文件名的特定扩展名。使用java.util.zip.ZipFile

关于没有针对此扩展的特定方法 - 我认为不为每个可能的扩展都有特定的方法是有意义的。

答案 1 :(得分:1)

这应该可以解决问题

saz文件是常规zip文件

public static boolean unzipFiles(String srcDirectory, String srcFile, String destDirectory)
{
    try
    {
        //first make sure that all the arguments are valid and not null
        if(srcDirectory == null)
        {
            System.out.println(1);
            return false;
        }
        if(srcFile == null)
        {
            System.out.println(2);
            return false;
        }
        if(destDirectory == null)
        {
            System.out.println(3);
            return false;
        }
        if(srcDirectory.equals(""))
        {
            System.out.println(4);
            return false;
        }
        if(srcFile.equals(""))
        {   
            System.out.println(5);
            return false;
        }
        if(destDirectory.equals(""))
        {
            System.out.println(6);
            return false;
        }
        //now make sure that these directories exist
        File sourceDirectory = new File(srcDirectory);
        File sourceFile = new File(srcDirectory + File.separator + srcFile);
        File destinationDirectory = new File(destDirectory);

        if(!sourceDirectory.exists())
        {
            System.out.println(7);
            return false;
        }
        if(!sourceFile.exists())
        {
            System.out.println(sourceFile);
            return false;
        }
        if(!destinationDirectory.exists())
        {
            System.out.println(9);
            return false;
        }

        //now start with unzip process
        BufferedOutputStream dest = null;

        FileInputStream fis = new FileInputStream(sourceFile);
        ZipInputStream zis = new ZipInputStream(new BufferedInputStream(fis));

        ZipEntry entry = null;

        while((entry = zis.getNextEntry()) != null)
        {
            String outputFilename = destDirectory + File.separator + entry.getName();

            System.out.println("Extracting file: " + entry.getName());

            createDirIfNeeded(destDirectory, entry);

            int count;

            byte data[] = new byte[BUFFER_SIZE];

            //write the file to the disk
            FileOutputStream fos = new FileOutputStream(outputFilename);
            dest = new BufferedOutputStream(fos, BUFFER_SIZE);

            while((count = zis.read(data, 0, BUFFER_SIZE)) != -1)
            {
                dest.write(data, 0, count);
            }

            //close the output streams
            dest.flush();
            dest.close();
        }

        //we are done with all the files
        //close the zip file
        zis.close();

    }
    catch(Exception e)
    {
        e.printStackTrace();
        return false;
    }

    return true;
}

答案 2 :(得分:0)

通过谷歌搜索“saz文件”找到的

This page说:

  

SAZ文件只是特殊格式化的.ZIP文件。如果你重命名一个   .SAZ文件到.ZIP,您可以打开它以便使用标准ZIP查看   查看工具

所以他们只是具有不同扩展名的zip文件。解压缩它们就像解压缩zip文件一样。