I have a problem to resolve. I have tar.gz compressed file, and I wouldLike keep the contents like a stream, like Zipfile permits with the method zipFile.getInputStream(zipEntry). I have Implemented using ant library, the code:
TarInputStream is = new TarInputStream(gzipInputStream);
while((entryx = is.getNextEntry()) != null) {
if (entryx.isDirectory()) continue;
else {
InputStream tmpIn = new StreamingTarEntry(is, entryx.getSize());
BufferedReader gzipReader = null;
// simple loop to dump the contents to the console
try {
gzipReader = new BufferedReader(
new InputStreamReader(
new GZIPInputStream(
tmpIn)));
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
if (gzipReader !=null){
buffer.add(gzipReader);
}
}// end of while
is.close();
After I put the BUFFERreader into my linkedList and then retrieve it in the main and wants to print the content of the buffer, i have the exception: java.io.EOFException: Unexpected end of ZLIB input stream at java.util.zip.InflaterInputStream.fill(Unknown Source)
Who can Help me???