概述
json
这个包可以实现json的编码和解码,即实现json对象和struct之间相互转换。
核心的两个函数
func Marshal(v interface{}) ([]byte ,error) //将go语言中的struct编码成json,返回json字符串的字节切片和错误信息
func Unmarshal(data []byte, v interface{}) error //将json解码成go语言中的struct,返回错误信息
package main
import (
"encoding/json"
"fmt"
"os"
)
type Person1 struct {
Name string
Age int
PetDog Dog
}
type Dog struct {
Name string
Age int
}
func main() {
erha := Dog{Name: "二哈", Age: 3}
tom := Person1{Name: "Tom", Age: 18, PetDog: erha}
fmt.Printf("tom: %vn", tom)
//1.将一个struct实例转换成一个json对象
//Marshal接收一个任何类型的对象,然后会返回对应json字符串的字节切片
b, _ := json.Marshal(tom)
json_b := string(b)
fmt.Printf("b: %vn", b)
fmt.Printf("json_b: %vn", json_b)
//2.将一个json字符串转成一个struct Unmarshal接收一个json字符串的字节切片和一个任意struct对象的地址
//Unmarshal会将json字符串对象的值相应的赋给这个struct对象
var tom2 Person1
json.Unmarshal([]byte(json_b), &tom2)
fmt.Printf("tom2: %vn", tom2)
//3.从io流中获取json字符串,然后转成struct
f, _ := os.Open("demo.json")
defer f.Close()
json_decoder := json.NewDecoder(f)
var tom3 map[string]interface{}
json_decoder.Decode(&tom3)
for k, v := range tom3 {
fmt.Printf("k:%v,v:%vn", k, v)
}
//4.将struct实例转成json后写入文件
jerry := Person1{Name: "Jerry", Age: 16, PetDog: erha}
f2, _ := os.OpenFile("demo2.json", os.O_RDWR|os.O_CREATE, 0777)
defer f2.Close()
json_encoder := json.NewEncoder(f2)
json_encoder.Encode(jerry)
//从json文件中读取写入的内容
res := make([]byte, 100)
f3, _ := os.Open("demo2.json")
f3.Read(res)
defer f3.Close()
fmt.Printf("res: %vn", res)
}
运行结果
tom: {Tom 18 {二哈 3}}
b: [123 34 78 97 109 101 34 58 34 84 111 109 34 44 34 65 103 101 34 58 49 56 44 34 80 101 116 68 111 103 34 58 123 34 78 97 109 101 34 58 34 228 186 140 229 147 136 34 44 34 65 103 101 34 58 51 125 125]
json_b: {"Name":"Tom","Age":18,"PetDog":{"Name":"二哈","Age":3}}
tom2: {Tom 18 {二哈 3}}
k:PetDog,v:map[Age:3 Name:二哈]
k:Name,v:Tom
k:Age,v:18
res: {"Name":"Jerry","Age":16,"PetDog":{"Name":"二哈","Age":3}}
同步更新于个人博客系统:golang学习笔记系列之标准库json的学习
最后
以上就是贤惠秀发为你收集整理的golang学习笔记系列之标准库json的学习的全部内容,希望文章能够帮你解决golang学习笔记系列之标准库json的学习所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复