Golang : zlib compress file example
This tutorial will show you how to read an uncompress file content into a buffer, use zlib on the buffer and write out the buffer content into a new file.
Here we go :
package main
import (
"bufio"
"bytes"
"compress/zlib"
"flag"
"fmt"
"io/ioutil"
"os"
)
func main() {
flag.Parse() // get the arguments from command line
filename := flag.Arg(0)
if filename == "" {
fmt.Println("Usage : go-zlib sourcefile")
os.Exit(1)
}
rawfile, err := os.Open(filename)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
defer rawfile.Close()
// calculate the buffer size for rawfile
info, _ := rawfile.Stat()
var size int64 = info.Size()
rawbytes := make([]byte, size)
// read rawfile content into buffer
buffer := bufio.NewReader(rawfile)
_, err = buffer.Read(rawbytes)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
var buf bytes.Buffer
writer := zlib.NewWriter(&buf)
writer.Write(rawbytes)
writer.Close()
err = ioutil.WriteFile(filename+".zlib", buf.Bytes(), info.Mode())
// use 0666 to replace info.Mode() if you prefer
if err != nil {
fmt.Println(err)
os.Exit(1)
}
fmt.Printf("%s compressed to %s\n", filename, filename+".zlib")
}
References :
http://golang.org/pkg/compress/zlib/
https://www.socketloop.com/tutorials/golang-read-binary-file-into-memory
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+12.1k Golang : Get month name from date example
+5.6k Unix/Linux : Get reboot history or check when was the last reboot date
+6.8k Golang : Fibonacci number generator examples
+8.8k Golang : Capture text return from exec function example
+14.9k JavaScript/JQuery : Detect or intercept enter key pressed example
+9.2k Golang : Launch Mac OS X Preview (or other OS) application from your program example
+5.3k Golang : Get S3 or CloudFront object or file information
+21.6k Golang : How to reverse slice or array elements order
+10.9k Golang : Read until certain character to break for loop
+21k Golang : Convert(cast) string to rune and back to string example
+13.4k Golang : Image to ASCII art example
+19.4k Golang : Set or Add HTTP Request Headers