Go 中使用「compress/gzip」套件進行 Gzip 檔案壓縮
檔案壓縮通常對於最佳化資料傳輸和儲存至關重要。在 Go 中,「compress/gzip」套件為 gzip 壓縮提供了便利的解決方案。以下是如何使用此套件:
壓縮檔案
import ( "bytes" "compress/gzip" "io" "os" ) func compressFile(sourceFile, compressedFile string) error { input, err := os.ReadFile(sourceFile) if err != nil { return err } var b bytes.Buffer w := gzip.NewWriter(&b) if _, err := w.Write(input); err != nil { return err } if err := w.Close(); err != nil { return err } if err := os.WriteFile(compressedFile, b.Bytes(), 0644); err != nil { return err } return nil }
直接讀取壓縮檔
讀取直接壓縮文件,可以使用gzip.NewReader函數:
func readCompressedFile(compressedFile string) error { f, err := os.Open(compressedFile) if err != nil { return err } defer f.Close() r, err := gzip.NewReader(f) if err != nil { return err } defer r.Close() if _, err := io.Copy(os.Stdout, r); err != nil { return err } return nil }
透過使用這些函數,您可以輕鬆地在Go 中壓縮和解壓縮文件,從而有效率地優化資料傳輸和儲存。
以上是如何使用Go的「compress/gzip」套件進行高效率的檔案壓縮和解壓?的詳細內容。更多資訊請關注PHP中文網其他相關文章!