GZIP has a size limitation of 4GB, got it from http://www.gzip.org/#faq10 There are some patches mentioned in the above link to be able to read a file more than 4gb.
I am using GZIPInputStream to read a .gz file.
And I am able to read sizes more than 4GB also. I know I am mixing up the input stream in java and the actual gzip executable.
But I want to know whether that could be a problem at all?
for example - will there ever be a case where I am not able to read a 6Gb .gz file in java? till now I tried and I faced no issue.
In short, is there a relation between the gzip file size limitation and the gzipinputstream in java?