質問

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?

役に立ちましたか?

解決

Do you mean, something like GZIPInputStream?

InputStream is = ....
InputStream gis = new GZIPInputStream(is);
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top