华域联盟 Golang Go语言对JSON进行编码和解码的方法

Go语言对JSON进行编码和解码的方法

本文实例讲述了Go语言对JSON进行编码和解码的方法。分享给大家供大家参考。具体如下:

json已成为不同平台间传送数据的最佳方式,Golang对json的支持非常好,代码如下:

复制代码 代码如下: package main

import (

    "fmt"

    "encoding/json"

)

func main() {

    // json encode

    j1 := make(map[string]interface{})

    j1["name"] = "华域联盟"

    j1["url"] = "https://www.jb51.net/"

    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("%#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语言程序设计有所帮助。

本文由 华域联盟 原创撰写:华域联盟 » Go语言对JSON进行编码和解码的方法

转载请保留出处和原文链接:https://www.cnhackhy.com/109946.htm

本文来自网络,不代表华域联盟立场,转载请注明出处。

作者: sterben

发表回复

联系我们

联系我们

2551209778

在线咨询: QQ交谈

邮箱: [email protected]

工作时间:周一至周五,9:00-17:30,节假日休息

关注微信
微信扫一扫关注我们

微信扫一扫关注我们