Go語言對JSON進行編碼和解碼
阿新 • • 發佈:2022-05-04
package mainimport ( "fmt" "encoding/json")func main() { // json encode j1 := make(map[string]interface{}) j1["name"] = "outofmemory" j1["url"] = "http://outofmemory.cn/" js1, err := json.Marshal(j1) if err != nil { panic(err) } println(string(js1)) // json decode j2 := make(map[string]interface{}) err = json.Unmarshal(js1, &j2) if err != nil { panic(err) } fmt.Printf("%#vn", j2)}