我試圖從服務器獲取zip文件。使用 林HttpURLConnection類獲得InputStream和這是我有:如何從InputStream解壓縮文件
myInputStream.toString().getBytes().toString() is equal to [[email protected]
byte[] bytes = Base64.decode(myInputStream.toString(), Base64.DEFAULT);
String string = new String(bytes, "UTF-8");
string == �&ܢ��z�m����y....
我真的試圖解壓縮該文件,但沒有任何作品,也有這麼多問題,我應該使用GZIPInputStream或ZipInputStream?我一定要救這個流作爲文件,或者我可以爲InputStream工作
請幫幫忙,我的老闆不耐煩:o 我不知道什麼是在這個文件我已經找到了:)
檢查[這](http://stackoverflow.com/a/3223510/916225)下載 –
寫這個zip文件到SD卡,然後嘗試解壓縮。不要忘記授予讀寫權限 – AmniX
inputStream.toString()的使用當然不會做你認爲它的作用。就像'java.io.File.toString()'不會將文件的**內容**打印爲字符串,而是打印其他文件(文件的路徑),如果您對內容感興趣。 – GPI