Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
742 views
in Technique[技术] by (71.8m points)

compression - java.util.zip.ZipException: invalid distance too far back while decompressing

util.zip.ZipException: invalid distance too far back this exception when i am decompressing my data....it occurs in this line

zipInput = new GZIPInputStream(fis);
bis = new BufferedInputStream(zipInput);
bis.read(buffer);//here exception occurs

please help.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

This archieve really has been corrupted. You can form input stream from bytes:

InputStream bStream = new ByteArrayInputStream(bytes);

or from file:

InputStream bStream = new FileInputStream(fis);

ByteArrayOutputStream bOutStream = new ByteArrayOutputStream();

try{
    GZIPInputStream gis = new GZIPInputStream(bStream);
    byte[] buffer = new byte[1];
    int len;

at some iteration cycle will corrupt

    while((len = gis.read(buffer)) != -1){
        bOutStream.write(buffer, 0, len);
    }

    bOutStream.close();
    gis.close();

} catch (IOException e) {
    e.printStackTrace();
    bOutStream.close();
    //print unarchieved bytes
    System.out.println(new String(bOutStream.toByteArray()));
}

That's why it helps find the place of corruption. All bytes before this place will be shown properly.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...