Last active
February 24, 2024 00:07
-
-
Save miguelmota/5bfa2b6ab88f439fe0da0bfb1faca763 to your computer and use it in GitHub Desktop.
Golang interface to bytes using gob encoder
This file contains 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 ( | |
"encoding/gob" | |
"bytes" | |
) | |
func GetBytes(key interface{}) ([]byte, error) { | |
var buf bytes.Buffer | |
enc := gob.NewEncoder(&buf) | |
err := enc.Encode(key) | |
if err != nil { | |
return nil, err | |
} | |
return buf.Bytes(), nil | |
} |
This only works if the inputted interface was originally bytes. If this were to be a string, etc... you would receive something like this from a panic:
I solve this by converting the
interface{}
to string and then to[]byte
:json.Unmarshal([]byte(value.(string)), &j)
This doesnt work also.
Unable to unmarshal: invalid character 'e' looking for beginning of value
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I solve this by converting the
interface{}
to string and then to[]byte
: