要使用 GZIP 格式壓縮和解壓縮文件,請使用 GZipStream 類別。
要壓縮文件,請使用 GZipStream 類別和 FileStream 類別。設定以下參數。
要壓縮的檔案以及輸出zip檔的名稱。
這裡,outputFile是輸出文件,該文件被讀入FileStream。
p>
using(var compress = new GZipStream(outputFile, CompressionMode.Compress, false)) { byte[] b = new byte[inFile.Length]; int read = inFile.Read(b, 0, b.Length); while (read > 0) { compress.Write(b, 0, read); read = inFile.Read(b, 0, b.Length); } }
要解壓縮文件,請使用相同的 GZipStream 類別。設定以下參數:來源檔案和輸出檔案的名稱。
從來源 zip 檔案中,開啟 GZipStream。
using (var zip = new GZipStream(inStream, CompressionMode.Decompress, true))
要解壓縮,請使用循環並讀取流中的資料。將其寫入輸出流並產生一個檔案。該文件是我們解壓縮後的文件。
using(var zip = new GZipStream(inputStream, CompressionMode.Decompress, true)) { byte[] b = new byte[inputStream.Length]; while (true) { int count = zip.Read(b, 0, b.Length); if (count != 0) outputStream.Write(b, 0, count); if (count != b.Length) break; } }
以上是在 C# 中使用 GZIP 格式壓縮和解壓縮文件的詳細內容。更多資訊請關注PHP中文網其他相關文章!