I have a url of a gzipped file. I would like to obtain an InputStream of the actual file in Java. What i开发者_开发技巧s the best way to achieve this?
Do you mean, something like GZIPInputStream?
InputStream is = ....
InputStream gis = new GZIPInputStream(is);
精彩评论