Go語言中序列化與反序列化示例詳解

前言

Go語言的序列化與反序列化在工作中十分常用,在Go語言中提供瞭相關的解析方法去解析JSON,操作也比較簡單

序列化

// 數據序列化
func Serialize(v interface{})([]byte, error)

// fix參數用於添加前綴
//idt參數用於指定你想要縮進的方式
func serialization (v interface{}, fix, idt string) ([]byte, error)

array、slice、map、struct對象

//struct
import (
	"encoding/json"
	"fmt"
)

type Student struct {
	Id   int64
	Name string
	Desc string
}

 func fn() {
	std := &Student{0, "Ruoshui", "this to Go"}
	data, err := json.MarshalIndent(std, "", "   ")  
	if err != nil {
		fmt.Println(err)
	}
	fmt.Println(string(data))
}
//array、slice、map
func fc() {
	s := []string{"Go", "java", "php"}
	d, _ := json.MarshalIndent(s, "", "\t")
	fmt.Println(string(d))
	
	m := map[string]string{
		"id": "0",
		"name":"ruoshui",
		"des": "this to Go",
	}
	bytes, _ := json.Marshal(m)
	fmt.Println(string(bytes))
}

序列化的接口

在json.Marshal中,我們會先去檢測傳進來對象是否為內置類型,是則編碼,不是則會先檢查當前對象是否已經實現瞭Marshaler接口,實現則執行MarshalJSON方法得到自定義序列化後的數據,沒有則繼續檢查是否實現瞭TextMarshaler接口,實現的話則執行MarshalText方法對數據進行序列化

MarshalJSON與MarshalText方法雖然返回的都是字符串,不過MarshalJSON方法返回的帶引號,MarshalText方法返回的不帶引號

//返回帶引號字符串
type Marshaler interface {
    MarshalJSON() ([]byte, error) 
}
type Unmarshaler interface {
	UnmarshalJSON([]byte) error
}

//返回不帶引號的字符串
type TextMarshaler interface {
    MarshalText() (text []byte, err error) 
}
type TextUnmarshaler interface {
	UnmarshalText(text []byte) error
}

反序列化

func Unmarshal(data [] byte, arbitrarily interface{}) error

該函數會把傳入的數據作為json解析,然後把解析完的數據存在arbitrarily中,arbitrarily是任意類型的參數,我們在用此函數進行解析時,並不知道傳入參數類型所以它可以接收所有類型且它一定是一個類型的指針

slice、map、struct反序列化

//struct
type Student struct {
	Id int64    `json:"id,string"`
	Name string `json:"name,omitempty"`
	Desc string `json:"desc"`
}

func fn() {
	str := `{"id":"0", "name":"ruoshui", "desc":"new Std"}`
	var st Student
	_ = json.Unmarshal([]byte(str), &st)
	fmt.Println(st)
}
//slice和map
func f() {
	slice := `["java", "php", "go"]`
	var sli []string
	_ = json.Unmarshal([]byte(slice), &sli)
	fmt.Println(sli)


	mapStr := `{"a":"java", "b":"node", "c":"php"}`
	var newMap map[string]string
	_ = json.Unmarshal([]byte(mapStr), &newMap)
	fmt.Println(newMap)
}

總結

到此這篇關於Go語言中序列化與反序列化的文章就介紹到這瞭,更多相關Go序列化與反序列化內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: