golang json parse code example
Example: golang parse json file
package main
import (
"encoding/json"
"fmt"
"os"
)
type Account struct {
Username string
Email string
Password string
}
func main() {
file, _ := os.Open("account.json")
defer file.Close()
decode := json.NewDecoder(file)
account := Account{}
err := decode.Decode(&account)
if err != nil {
fmt.Println(err)
}
fmt.Println(account)
}