欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Go 语言 JSON 标准库的使用

程序员文章站 2022-03-07 08:01:10
目录1. 明确知道 json 格式2. 无法确定 json 格式go 语言中的 encoding/json 库提供了复杂的将 go 中各种类型与json格式之间转换的功能, 我们主要使用以下几个功能:...

go 语言中的 encoding/json 库提供了复杂的将 go 中各种类型与json格式之间转换的功能, 我们主要使用以下几个功能:

  • 将一个切片、结构体或字典序列化成 json 格式的字符串【字节流】。
  • 将一个 json 格式的字符串【字节流】反序列化成一个切片、结构体或字典。

序列化

序列化使用 json 库中的marshal函数:

func marshal(v interface{}) ([]byte, error)

1. 结构体序列化

比如使用以下的结构体表示一部电影:

	type movie struct {
		title  string
		year   int  `json:"released"`
		color  bool `json:"color,omitempty"`
		actors []string
	}

定义里类型后面跟的字符串 json:"released"json:"color,omitempty,称为 field tags,它告诉 json 库在执行序列化时的一些规则:

  • json:"released" 使得在序列化后对应的名字为"released",而不是"year"。
  • json:"color,omitempty"使得如果 color 成员的值为false,那么就忽略它,不对它进行序列化。

没有 field tags 时进行序列化的一些规则:

  • 如果结构体成员的名字不是以大写字母开头,则不对它进行序列化。
  • 如果结构体成员的名字是以大写字母开头,则序列化后的名字就是成员名。

进行序列化的代码如下:

movie := movie{
		title:  "casablanca",
		year:   1942,
		color:  false,
		actors: []string{"humphrey bogart", "ingrid bergman"},
	}
	
	data, err := json.marshal(movie)
	if err != nil {
		log.fatalf("json marshaling failed: %s", err)
	}
	fmt.printf("%s\n", data)

输出:

{"title":"casablanca","released":1942,"actors":["humphrey bogart","ingrid bergman"]}

2. 字典序列化

一个字典要想序列化成- json 格式,它的 key 必须是字符串。

以下是一个例子:

	info := map[string]int{
		"width":  1280,
		"height": 720,
	}
	
	data, err := json.marshalindent(info, "", " ")
	if err != nil {
		log.fatalf("json marshaling failed: %s", err)
	}
	fmt.printf("%s\n", data)

输出:

{
 "height": 720,
 "width": 1280
}

这里我们使用marshalindent函数,使得输出后的 json 格式更易阅读。序列化后的名字就是字典中 key 的名称。

3. 切片序列化

直接看一个例子:

	type movie struct {
		title  string
		year   int  `json:"released"`
		color  bool `json:"color,omitempty"`
		actors []string
	}

	var movies = []movie{
		{
			title:  "casablanca",
			year:   1942,
			color:  false,
			actors: []string{"humphrey bogart", "ingrid bergman"},
		},
		{
			title:  "cool hand luke",
			year:   1967,
			color:  true,
			actors: []string{"paul newman"},
		},
		{
			title:  "bullitt",
			year:   1968,
			color:  true,
			actors: []string{"steve mcqueen", "jacqueline bisset"},
		},
	}
	data, err := json.marshalindent(movies, "", " ")
	if err != nil {
		log.fatalf("json marshaling failed: %s", err)
	}
	fmt.printf("%s\n", data)

输出:

[
 {
  "title": "casablanca",
  "released": 1942,
  "actors": [
   "humphrey bogart",
   "ingrid bergman"
  ]
 },
 {
  "title": "cool hand luke",
  "released": 1967,
  "color": true,
  "actors": [
   "paul newman"
  ]
 },
 {
  "title": "bullitt",
  "released": 1968,
  "color": true,
  "actors": [
   "steve mcqueen",
   "jacqueline bisset"
  ]
 }
]

反序列化

反序列化使用unmarshal函数:

func unmarshal(data []byte, v interface{}) error

1. 明确知道 json 格式

我们要先将 json 格式表示为一个确定的类型。

1.如下的 json 格式:

	{
		"name": "awesome 4k",
		"resolutions": [
			{
				"width": 1280,
				"height": 720
			},
			{
				"width": 1920,
				"height": 1080
			},
			{
				"width": 3840,
				"height": 2160
			}
		]
	}

我们可以用如下结构体来表示它:

struct {
	name        string
	resolutions []struct {
		width  int
		height int
	}
}

2.如下的 json 格式:

{
 "height": 720,
 "width": 1280
}

也可以使用map[string]int,也就是字典来表示。

3.如下的 json 格式:

 [
	{
		"width": 1280,
		"height": 720
	},
	{
		"width": 1920,
		"height": 1080
	},
	{
		"width": 3840,
		"height": 2160
	}
]

使用切片[]map[string]int来表示。

不管怎样,一个确定的json格式总是可以使用切片、结构体或字典来表示。

之后就可以执行反序列化了:

	var jsonblob = []byte(`
		[
			{
				"width": 1280,
				"height": 720
			},
			{
				"width": 1920,
				"height": 1080,
			},
			{
				"width": 3840,
				"height": 2160
			}
		]
	`)

	di := []map[string]int{}
	err = json.unmarshal(jsonblob, &di)
	if err != nil {
		fmt.println("error:", err)
	}
	fmt.printf("%+v\n", di)

输出

[map[height:720 width:1280] map[height:1080 width:1920] map[height:2160 width:3840]]

2. 无法确定 json 格式

无法确定的格式可以直接使用interface{}类型来表示。这个时候,如果是json对象,则反序列化时 json 库会使用map[string]interface{}类型来表示它。如果是json数组,则会使用[]interface{}类型来表示它。具体interface{}对应的具体类型,就需要使用类型断言了。

具体看一个示例:

package main

import (
	"encoding/json"
	"fmt"
)

func main() {
	var jsonblob = []byte(`
		{
			"name": "awesome 4k",
			"price": 1999.9,
			"resolutions": [
				{
					"width": 1280,
					"height": 720
				},
				{
					"width": 1920,
					"height": 1080
				},
				{
					"width": 3840,
					"height": 2160
				}
			]
		}
	`)

	var d interface{}
	err := json.unmarshal(jsonblob, &d)
	if err != nil {
		fmt.println("error:", err)
	}

	fmt.println(d)

	m := d.(map[string]interface{})
	for k, v := range m {
		switch vv := v.(type) {
		case string:
			fmt.println(k, "is string", vv)
		case float64:
			fmt.println(k, "is float64", vv)
		case []interface{}:
			fmt.println(k, "is an array:")
			for i, u := range vv {
				fmt.println(i, u)
			}
		default:
			fmt.println(k, "is of a type i don't know how to handle")
		}
	}
}

输出:

map[name:awesome 4k price:1999.9 resolutions:[map[height:720 width:1280] map[height:1080 width:1920] map[height:2160 width:3840]]]
resolutions is an array:
0 map[height:720 width:1280]
1 map[height:1080 width:1920]
2 map[height:2160 width:3840]
name is string awesome 4k
price is float64 1999.9

到此这篇关于go 语言 json 标准库的使用的文章就介绍到这了,更多相关go 语言 json 标准库内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

相关标签: Go JSON 标准库