使用「compress/gzip」套件來壓縮檔案
在Go 中處理二進位檔案可能具有挑戰性,尤其是在處理壓縮時格式。 「compress/gzip」套件為 GZIP 壓縮和解壓縮提供了簡單的解決方案。
壓縮檔案
要將檔案壓縮為 GZIP 格式,您可以使用gzip.NewWriter 函數。以下是示範如何執行此操作的程式碼片段:
package main import ( "bytes" "compress/gzip" "os" ) func main() { var b bytes.Buffer w := gzip.NewWriter(&b) w.Write([]byte("hello, world\n")) w.Close() // The compressed content is now available in the 'b' buffer. }
解壓縮檔案
要解壓縮 GZIP 文件,您可以使用 gzip.NewReader 函數。以下程式碼顯示如何操作:
package main import ( "compress/gzip" "io" "os" ) func main() { var b bytes.Buffer // Assume you have the compressed content in the 'b' buffer. r, err := gzip.NewReader(&b) if err != nil { panic(err) } defer r.Close() io.Copy(os.Stdout, r) }
透過實現這些技術,您可以在 Go 程式中無縫處理 GZIP 壓縮和解壓縮。
以上是Go 的 compress/gzip 如何有效率地打包 Gzip 和 Ungzip 檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!