golang中使用json


golang中使用json的一些例子

// go_json_test project main.go
package main

import (
    "encoding/json"
    "fmt"
)

func encode_from_map_test() {
    fmt.Printf("encode_from_map_test\n")

    m := map[string][]string{
        "level":   {"debug"},
        "message": {"File not found", "Stack overflow"},
    }

    if data, err := json.Marshal(m); err == nil {
        fmt.Printf("%s\n", data)
    }
}

type GameInfo struct {
    Game_id   int64
    Game_map  string
    Game_time int32
}

func encode_from_object_test() {

    fmt.Printf("encode_from_object_test\n")

    game_infos := []GameInfo{
        GameInfo{1, "map1", 20},
        GameInfo{2, "map2", 60},
    }

    if data, err := json.Marshal(game_infos); err == nil {
        fmt.Printf("%s\n", data)
    }
}

type GameInfo1 struct {
    Game_id   int64  `json:"game_id"`            // Game_id解析为game_id
    Game_map  string `json:"game_map,omitempty"` // GameMap解析为game_map, 忽略空置
    Game_time int32
    Game_name string `json:"-"` // 忽略game_name
}

func encode_from_object_tag_test() {

    fmt.Printf("encode_from_object_tag_test\n")

    game_infos := []GameInfo1{
        GameInfo1{1, "map1", 20, "name1"},
        GameInfo1{2, "map2", 60, "name2"},
        GameInfo1{3, "", 120, "name3"},
    }

    if data, err := json.Marshal(game_infos); err == nil {
        fmt.Printf("%s\n", data)
    }
}

type BaseObject struct {
    Field_a string
    Field_b string
}

type DeriveObject struct {
    BaseObject
    Field_c string
}

func encode_from_object_with_anonymous_field() {
    fmt.Printf("encode_from_object_with_anonymous_field\n")

    object := DeriveObject{BaseObject{"a", "b"}, "c"}

    if data, err := json.Marshal(object); err == nil {
        fmt.Printf("%s\n", data)
    }
}

// convert interface
// 在调用Marshal(v interface{})时,该函数会判断v是否满足json.Marshaler或者 encoding.Marshaler 接口,
// 如果满足,则会调用这两个接口来进行转换(如果两个都满足,优先调用json.Marshaler)
/*
// json.Marshaler
type Marshaler interface {
    MarshalJSON() ([]byte, error)
}

// encoding.TextMarshaler
type TextMarshaler interface {
    MarshalText() (text []byte, err error)
}
*/

type Point struct {
    X int
    Y int
}

func (pt Point) MarshalJSON() ([]byte, error) {
    return []byte(fmt.Sprintf(`{"px" : %d, "py" : %d}`, pt.X, pt.Y)), nil
}

func encode_from_object_with_marshaler_interface() {

    fmt.Printf("encode_from_object_with_marshaler_interface\n")

    if data, err := json.Marshal(Point{50, 50}); err == nil {
        fmt.Printf("%s\n", data)
    } else {
        fmt.Printf("error %s\n", err.Error())
    }
}

type Point1 struct {
    X int
    Y int
}

func (pt Point1) MarshalText() ([]byte, error) {
    return []byte(fmt.Sprintf(`{"px" : %d, "py" : %d}`, pt.X, pt.Y)), nil
}

func encode_from_object_with_text_marshaler_interface() {

    fmt.Printf("encode_from_object_with_text_marshaler_interface\n")

    if data, err := json.Marshal(Point1{50, 50}); err == nil {
        fmt.Printf("%s\n", data)
    } else {
        fmt.Printf("error %s\n", err.Error())
    }
}

// decode test
func decode_to_map_test() {

    fmt.Printf("decode_to_map_test\n")

    data := `[{"Level":"debug","Msg":"File: \"test.txt\" Not Found"},` +
        `{"Level":"","Msg":"Logic error"}]`

    var debug_infos []map[string]string
    json.Unmarshal([]byte(data), &debug_infos)

    fmt.Println(debug_infos)
}

type DebugInfo struct {
    Level  string
    Msg    string
    author string // 未导出字段不会被json解析
}

func (dbgInfo DebugInfo) String() string {
    return fmt.Sprintf("{Level: %s, Msg: %s}", dbgInfo.Level, dbgInfo.Msg)
}

func decode_to_object_test() {
    fmt.Printf("decode_to_object_test\n")

    data := `[{"level":"debug","msg":"File Not Found","author":"Cynhard"},` +
        `{"level":"","msg":"Logic error","author":"Gopher"}]`

    var dbgInfos []DebugInfo
    json.Unmarshal([]byte(data), &dbgInfos)

    fmt.Println(dbgInfos)
}

type DebugInfoTag struct {
    Level  string `json:"level"`   // level 解码为 Level
    Msg    string `json:"message"` // message 解码为 Msg
    Author string `json:"-"`       // 忽略Author
}

func (dbgInfo DebugInfoTag) String() string {
    return fmt.Sprintf("{Level: %s, Msg: %s}", dbgInfo.Level, dbgInfo.Msg)
}

func decode_to_object_tag_test() {
    fmt.Printf("decode_to_object_tag_test\n")

    data := `[{"level":"debug","message":"File Not Found","author":"Cynhard"},` +
        `{"level":"","message":"Logic error","author":"Gopher"}]`

    var dbgInfos []DebugInfoTag
    json.Unmarshal([]byte(data), &dbgInfos)

    fmt.Println(dbgInfos)

}

type Pointx struct{ X, Y int }

type Circle struct {
    Pointx
    Radius int
}

func (c Circle) String() string {
    return fmt.Sprintf("{Point{X: %d, Y :%d}, Radius: %d}",
        c.Pointx.X, c.Pointx.Y, c.Radius)
}

func decode_to_object_with_anonymous_field() {
    fmt.Printf("decode_to_object_with_anonymous_field\n")

    data := `{"X":80,"Y":80,"Radius":40}`

    var c Circle
    json.Unmarshal([]byte(data), &c)

    fmt.Println(c)
}

// decode convert interface
// 解码时根据参数是否满足json.Unmarshaler和encoding.TextUnmarshaler来调用相应函数(若两个函数都存在,则优先调用UnmarshalJSON)
/*
// json.Unmarshaler
type Unmarshaler interface {
    UnmarshalJSON([]byte) error
}

// encoding.TextUnmarshaler
type TextUnmarshaler interface {
    UnmarshalText(text []byte) error
}
*/

type Pointy struct{ X, Y int }

func (pt Pointy) MarshalJSON() ([]byte, error) {
    // no decode, just print
    return []byte(fmt.Sprintf(`{"X":%d,"Y":%d}`, pt.X, pt.Y)), nil
}

func decode_to_object_with_marshaler_interface() {
    fmt.Printf("decode_to_object_with_marshaler_interface\n")

    if data, err := json.Marshal(Pointy{50, 50}); err == nil {
        fmt.Printf("%s\n", data)
    }
}

func main() {
    fmt.Println("json test!")

    fmt.Printf("ecode test\n")

    encode_from_map_test()

    encode_from_object_test()

    encode_from_object_tag_test()

    encode_from_object_with_anonymous_field()

    encode_from_object_with_marshaler_interface()

    encode_from_object_with_text_marshaler_interface()

    fmt.Printf("decode test\n")

    decode_to_map_test()

    decode_to_object_test()

    decode_to_object_tag_test()

    decode_to_object_with_anonymous_field()

    decode_to_object_with_marshaler_interface()

}

运行结果:

json test!
ecode test
encode_from_map_test
{"level":["debug"],"message":["File not found","Stack overflow"]}
encode_from_object_test
[{"Game_id":1,"Game_map":"map1","Game_time":20},{"Game_id":2,"Game_map":"map2","Game_time":60}]
encode_from_object_tag_test
[{"game_id":1,"game_map":"map1","Game_time":20},{"game_id":2,"game_map":"map2","Game_time":60},{"game_id":3,"Game_time":120}]
encode_from_object_with_anonymous_field
{"Field_a":"a","Field_b":"b","Field_c":"c"}
encode_from_object_with_marshaler_interface
{"px":50,"py":50}
encode_from_object_with_text_marshaler_interface
"{\"px\" : 50, \"py\" : 50}"
decode test
decode_to_map_test
[map[Level:debug Msg:File: "test.txt" Not Found] map[Level: Msg:Logic error]]
decode_to_object_test
[{Level: debug, Msg: File Not Found} {Level: , Msg: Logic error}]
decode_to_object_tag_test
[{Level: debug, Msg: File Not Found} {Level: , Msg: Logic error}]
decode_to_object_with_anonymous_field
{Point{X: 80, Y :80}, Radius: 40}
decode_to_object_with_marshaler_interface
{"X":50,"Y":50}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,098评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,213评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,960评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,519评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,512评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,533评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,914评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,574评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,804评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,563评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,644评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,350评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,933评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,908评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,146评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,847评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,361评论 2 342

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,580评论 18 139
  • 1、通过CocoaPods安装项目名称项目信息 AFNetworking网络请求组件 FMDB本地数据库组件 SD...
    阳明先生x阅读 15,967评论 3 119
  • 小果毕业后就有了工作,还不错的单位,专业也对口,这让小果觉得很幸运,很快小果打包好行李,带着她的满腔热情奔赴她的新...
    柚子幺幺阅读 497评论 0 0
  • 《贫女》——秦韬玉 蓬门未识绮罗香,拟托良媒益自伤。谁爱风流高格调,共怜时世俭梳妆。敢将十指夸针巧,不把双眉斗画长...
    明媚月光阅读 296评论 0 4
  • 也许是真的长大了,也许是真的成熟,但是宁愿幼稚、宁愿磕磕绊绊,也不愿被现在的境况所羁绊。你不懂的滋味。强迫自己假装...
    柠檬_黄阅读 278评论 0 0