Created
December 2, 2024 08:15
-
-
Save jgeek/10e1aef56aab6f8a903308ca456c64bd to your computer and use it in GitHub Desktop.
golang gzip
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "bytes" | |
| "compress/gzip" | |
| "fmt" | |
| "encoding/base64" | |
| "io/ioutil" | |
| ) | |
| func main() { | |
| var b bytes.Buffer | |
| gz := gzip.NewWriter(&b) | |
| if _, err := gz.Write([]byte("YourDataHere")); err != nil { | |
| panic(err) | |
| } | |
| if err := gz.Flush(); err != nil { | |
| panic(err) | |
| } | |
| if err := gz.Close(); err != nil { | |
| panic(err) | |
| } | |
| str := base64.StdEncoding.EncodeToString(b.Bytes()) | |
| fmt.Println(str) | |
| data, _ := base64.StdEncoding.DecodeString(str) | |
| fmt.Println(data) | |
| rdata := bytes.NewReader(data) | |
| r,_ := gzip.NewReader(rdata) | |
| s, _ := ioutil.ReadAll(r) | |
| fmt.Println(string(s)) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment