Pregunta

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?

¿Fue útil?

Solución

Do you mean, something like GZIPInputStream?

InputStream is = ....
InputStream gis = new GZIPInputStream(is);
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top