commit-classpath
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Bug #791] java.util.zip.DeflaterEngine exception


From: nobody
Subject: [Bug #791] java.util.zip.DeflaterEngine exception
Date: Tue, 02 Jul 2002 13:51:22 -0400

=================== BUG #791: FULL BUG SNAPSHOT ===================
http://savannah.gnu.org/bugs/?func=detailbug&bug_id=791&group_id=85

Submitted by: None                      Project: classpath                      
Submitted on: 2002-Jul-02 13:51
Severity:  5 - Major                    Resolution:  None                       
Assigned to:  None                      Status:  Open                           
Platform Version:  None                 

Summary:  java.util.zip.DeflaterEngine exception

Original Submission:  I got an exception trying to pack this file with
GZIP (at DeflaterEngine.findLongestMatch).

Code to reproduce this error :

FileInputStream  inputStream = new FileInputStream("test.bin");
GZIPOutputStream outputStream = new GZIPOutputStream(new 
FileOutputStream("test.bin.gz"));

byte[] writeData = new byte[inputStream.available()];
inputStream.read(writeData);
outputStream.write(writeData);
                
inputStream.close();
outputStream.close();



No Followups Have Been Posted


File Attachments
****************

-------------------------------------------------------
Date: 2002-Jul-02 13:51  Name: test.bin  Size: 63KB   By: None
The file that fails.
http://savannah.gnu.org/bugs/download.php?group_id=85&bug_id=791&bug_file_id=48


For detailed info, follow this link:
http://savannah.gnu.org/bugs/?func=detailbug&bug_id=791&group_id=85



reply via email to

[Prev in Thread] Current Thread [Next in Thread]