Question

I have a url of a gzipped file. I would like to obtain an InputStream of the actual file in Java. What is the best way to achieve this?

Était-ce utile?

La solution

Do you mean, something like GZIPInputStream?

InputStream is = ....
InputStream gis = new GZIPInputStream(is);
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top