Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

compression

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.

like image 361
user3193015 Avatar asked Jan 16 '14 01:01

user3193015


1 Answers

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.

like image 174
user3235602 Avatar answered Oct 22 '22 04:10

user3235602