首頁 > 軟體

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

2022-07-21 14:02:31

前言

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序列化與反序列化內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com