web-dev-qa-db-ja.com

バイト配列をZipファイルに変換するにはどうすればよいですか?

バイトの配列をZipファイルに変換しようとしています。次のコードを使用してバイトを取得しました。

byte[] originalContentBytes= new Verification().readBytesFromAFile(new File("E://file.Zip"));

private byte[] readBytesFromAFile(File file) {
    int start = 0;
    int length = 1024;
    int offset = -1;
    byte[] buffer = new byte[length];
    try {
        //convert the file content into a byte array
        FileInputStream fileInuptStream = new FileInputStream(file);
        BufferedInputStream bufferedInputStream = new BufferedInputStream(
                fileInuptStream);
        ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();

        while ((offset = bufferedInputStream.read(buffer, start, length)) != -1) {
            byteArrayOutputStream.write(buffer, start, offset);
        }

        bufferedInputStream.close();
        byteArrayOutputStream.flush();
        buffer = byteArrayOutputStream.toByteArray();
        byteArrayOutputStream.close();
    } catch (FileNotFoundException fileNotFoundException) {
        fileNotFoundException.printStackTrace();
    } catch (IOException ioException) {
        ioException.printStackTrace();
    }

    return buffer;
}

しかし、私の問題は、バイト配列をZipファイルに変換することです。どうすればよいでしょうか。

注:指定されたZipには2つのファイルが含まれています。

9
Mohan

使用できるバイトからコンテンツを取得するには

ZipInputStream zipStream = new ZipInputStream(new ByteArrayInputStream(bytes));
ZipEntry entry = null;
while ((entry = zipStream.getNextEntry()) != null) {

    String entryName = entry.getName();

    FileOutputStream out = new FileOutputStream(entryName);

    byte[] byteBuff = new byte[4096];
    int bytesRead = 0;
    while ((bytesRead = zipStream.read(byteBuff)) != -1)
    {
        out.write(byteBuff, 0, bytesRead);
    }

    out.close();
    zipStream.closeEntry();
}
zipStream.close(); 
23
morja

あなたはおそらくこのようなコードを探しています:

_ZipInputStream z = new ZipInputStream(new ByteArrayInputStream(buffer))
_

これで、getNextEntry()を介してZipファイルの内容を取得できます。

5
Anony-Mousse