Go语言对JSON进行编码和解码的方法
本文实例讲述了Go语言对JSON进行编码和解码的方法。分享给大家供大家参考。具体如下:
json已成为不同平台间传送数据的最佳方式,Golang对json的支持非常好,代码如下:
packagemain import( "fmt" "encoding/json" ) funcmain(){ //jsonencode j1:=make(map[string]interface{}) j1["name"]="毛票票" j1["url"]="https://www.nhooo.com/" js1,err:=json.Marshal(j1) iferr!=nil{ panic(err) } println(string(js1)) //jsondecode j2:=make(map[string]interface{}) err=json.Unmarshal(js1,&j2) iferr!=nil{ panic(err) } fmt.Printf("%#v\n",j2) }
PS:关于json操作,这里再为大家推荐几款比较实用的json在线工具供大家参考使用:
在线JSON代码检验、检验、美化、格式化工具:
http://tools.jb51.net/code/json
JSON在线格式化工具:
http://tools.jb51.net/code/jsonformat
在线XML/JSON互相转换工具:
http://tools.jb51.net/code/xmljson
json代码在线格式化/美化/压缩/编辑/转换工具:
http://tools.jb51.net/code/jsoncodeformat
在线json压缩/转义工具:
http://tools.jb51.net/code/json_yasuo_trans
C语言风格/HTML/CSS/json代码格式化美化工具:
http://tools.jb51.net/code/ccode_html_css_json
希望本文所述对大家的Go语言程序设计有所帮助。