搜索
首页后端开发Golang介绍Golang序列化和反序列化

下面由golang教程栏目给大家介绍Golang序列化和反序列化,希望对需要的朋友有所帮助!

介绍Golang序列化和反序列化

为什么要序列化和反序列化

  我们的数据对象要在网络中传输或保存到文件,就需要对其编码和解码动作,目前存在很多编码格式:json, XML, Gob, Google Protocol Buffer 等, Go 语言当然也支持所有这些编码格式。

序列化与反序列化定义

  序列化 (Serialization)是将对象的状态信息转换为可以存储或传输的形式的过程。在序列化期间,对象将其当前状态写入到临时或持久性存储区。通过从存储区中读取对象的状态,重新创建该对象,则为反序列化

序列化和反序列化规则

Go类型              json 类型

bool                   booleans

float64               numbers

string                 strings

nil                      null

在解析 json 格式数据时,若以 interface{} 接收数据,需要按照以上规则进行解析。

代码演示

反序列化


package main

import (   "encoding/json"
   "fmt")

type People struct {
   name   string  `json:"name"` // name,小写不导出
   Age    int     `json:"age"`  // age
   Gender string `json:"gender"`  // gender   Lesson
}

type Lesson struct {
   Lessons []string `json:"lessons"`
}

func main() {
   jsonstr := `{"Age": 18,"name": "Jim" ,"gender": "男","lessons":["English","History"],"Room":201,"n":null,"b":false}`   // 反序列化   var people People   if err := json.Unmarshal([]byte(jsonstr),&people); err == nil {      fmt.Println("struct people:")      fmt.Println(people)
   }   // 反序列化 json 字符串中的一部分   var lessons Lesson   if err := json.Unmarshal([]byte(jsonstr),&lessons); err == nil {      fmt.Println("struct lesson:")      fmt.Println(lessons)
   }   // 反序列化 json 字符串数组
   jsonstr = `["English","History"]`
   var str []string
   if err := json.Unmarshal([]byte(jsonstr), &str); err == nil {      fmt.Println("struct str:")      fmt.Println(str)
   }
}// 打印结果  struct people:
  { 18 男 {[English History]}}
  struct lesson:
  {[English History]}
  struct str:
  [English History]

反序列化

序列化


package main

import (    "encoding/json"
    "fmt")

type People struct {
    name   string  `json:"name"` // name,小写不导出
    Age    int     `json:"age"`  // age,在 json 字符串中叫 age
    Gender string `json:"gender"`  // gender    Lesson
}

type Lesson struct {
    Lessons []string `json:"lessons"`
}

func main() {
    lesson := Lesson{[]string{"Math","English","Chinese"}}
    people := &People{
        name:   "amy",
        Age:    22,
        Gender: "female",
        Lesson: lesson,
    }    if b, err := json.Marshal(people); err != nil {        fmt.Println("Marshal failed...")
    }else {        fmt.Println(b)        fmt.Println(string(b))
    }
}    // 打印结果
    [123 34 97 103 101 34 58 50 50 44 34 103 101 110 100 101 114 34 58 34 102 101 109 97 108 101 34 44 34 108 101 115 115 111 110 115 34 58 91 34 77 97 116 104 34 44 34 69 110 103 108 105 115 104 34 44 34 67 104 105 110 101 115 101 34 93 125]
{"age":22,"gender":"female","lessons["Math","English","Chinese“}

序列化

序列化-->传输-->反序列化


package main

import (    "fmt"
    "encoding/json")

type Student struct {
    Name    string
    Age        int
    Guake    bool
    Classes    []string
    Price    float32
}

func (s * Student)ShowStu() {    fmt.Println("show Student :")    fmt.Println("\tName\t:", s.Name)    fmt.Println("\tAge\t:", s.Age)    fmt.Println("\tGuake\t:", s.Guake)    fmt.Println("\tPrice\t:", s.Price)    fmt.Printf("\tClasses\t: ")    for _, a := range s.Classes {        fmt.Printf("%s ", a)
    }    fmt.Println("")
}

func main() {
    st := &Student {        "Xiao Ming",        16,        true,
        []string{"Math", "English", "Chinese"},        9.99,
    }    fmt.Println("before JSON encoding :")
    st.ShowStu()

    b, err := json.Marshal(st)    if err != nil {        fmt.Println("encoding faild")
    } else {        fmt.Println("encoded data : ")        fmt.Println(b)        fmt.Println(string(b))
    }
    ch := make(chan string, 1)
    go func(c chan string, str string){
        c <- str
    }(ch, string(b))
    strData := <-ch    fmt.Println("--------------------------------")
    stb := &Student{}
    stb.ShowStu()
    err = json.Unmarshal([]byte(strData), &stb)    if err != nil {        fmt.Println("Unmarshal faild")
    } else {        fmt.Println("Unmarshal success")
        stb.ShowStu()
    }
}

示例

json 数据编码和解码

  json 包提供了 Decoder 和 Encoder 类型来支持常用 json 数据流读写。NewDecoder 和 NewEncoder 函数分别封装了 io.Reader 和 io.Writer 接口。


package main

import (    "encoding/json"
    "fmt"
    "os"
    "strings")

type People struct {
    name   string  `json:"name"` // name,小写不导出
    Age    int     `json:"age"`  // age,在 json 字符串中叫 age
    Gender string `json:"gender"`  // gender    Lesson
}

type Lesson struct {
    Lessons []string `json:"lessons"`
}

func main() {

    jsonStr := `{"Age": 18,"name": "Jim" ,"gender": "男","lessons":["English","History"],"Room":201,"n":null,"b":false}`
    strR := strings.NewReader(jsonStr)
    people := &People{}    // 用 NewDecoder && Decode 进行解码给定义好的结构体对象 people
    err := json.NewDecoder(strR).Decode(people)    if err != nil {        fmt.Println(err)
    }    fmt.Printf("%+v",people)   //

    // 用 NewEncoder && Encode 把保存的 people 结构体对象编码为 json 保存到文件
    f, err := os.Create("./people.json")
    json.NewEncoder(f).Encode(people)

}

示例

package main

import (
    "encoding/json"
    "fmt"
    "os"
    "strings"
)

type People struct {
    name   string  `json:"name"` // name,小写不导出
    Age    int     `json:"age"`  // age,在 json 字符串中叫 age
    Gender string `json:"gender"`  // gender
    Lesson
}

type Lesson struct {
    Lessons []string `json:"lessons"`
}

func main() {

    jsonStr := `{"Age": 18,"name": "Jim" ,"gender": "男","lessons":["English","History"],"Room":201,"n":null,"b":false}`
    strR := strings.NewReader(jsonStr)
    people := &People{}

    // 用 NewDecoder && Decode 进行解码给定义好的结构体对象 people
    err := json.NewDecoder(strR).Decode(people)
    if err != nil {
        fmt.Println(err)
    }
    fmt.Printf("%+v",people)   //

    // 用 NewEncoder && Encode 把保存的 people 结构体对象编码为 json 保存到文件
    f, err := os.Create("./people.json")
    json.NewEncoder(f).Encode(people)

}

示例


以上是介绍Golang序列化和反序列化的详细内容。更多信息请关注PHP中文网其他相关文章!

声明
本文转载于:cnblogs。如有侵权,请联系admin@php.cn删除
在Golang和Python之间进行选择:适合您的项目在Golang和Python之间进行选择:适合您的项目Apr 19, 2025 am 12:21 AM

golangisidealforperformance-Critical-clitageAppations and ConcurrentPrompromming,而毛皮刺激性,快速播种和可及性。1)forhigh-porformanceneeds,pelectgolangduetoitsefefsefefseffifeficefsefeflicefsiveficefsiveandconcurrencyfeatures.2)fordataa-fordataa-fordata-fordata-driventriventriventriventriventrivendissp pynonnononesp

Golang:并发和行动绩效Golang:并发和行动绩效Apr 19, 2025 am 12:20 AM

Golang通过goroutine和channel实现高效并发:1.goroutine是轻量级线程,使用go关键字启动;2.channel用于goroutine间安全通信,避免竞态条件;3.使用示例展示了基本和高级用法;4.常见错误包括死锁和数据竞争,可用gorun-race检测;5.性能优化建议减少channel使用,合理设置goroutine数量,使用sync.Pool管理内存。

Golang vs. Python:您应该学到哪种语言?Golang vs. Python:您应该学到哪种语言?Apr 19, 2025 am 12:20 AM

Golang更适合系统编程和高并发应用,Python更适合数据科学和快速开发。1)Golang由Google开发,静态类型,强调简洁性和高效性,适合高并发场景。2)Python由GuidovanRossum创造,动态类型,语法简洁,应用广泛,适合初学者和数据处理。

Golang vs. Python:性能和可伸缩性Golang vs. Python:性能和可伸缩性Apr 19, 2025 am 12:18 AM

Golang在性能和可扩展性方面优于Python。1)Golang的编译型特性和高效并发模型使其在高并发场景下表现出色。2)Python作为解释型语言,执行速度较慢,但通过工具如Cython可优化性能。

Golang vs.其他语言:比较Golang vs.其他语言:比较Apr 19, 2025 am 12:11 AM

Go语言在并发编程、性能、学习曲线等方面有独特优势:1.并发编程通过goroutine和channel实现,轻量高效。2.编译速度快,运行性能接近C语言。3.语法简洁,学习曲线平缓,生态系统丰富。

Golang和Python:了解差异Golang和Python:了解差异Apr 18, 2025 am 12:21 AM

Golang和Python的主要区别在于并发模型、类型系统、性能和执行速度。1.Golang使用CSP模型,适用于高并发任务;Python依赖多线程和GIL,适合I/O密集型任务。2.Golang是静态类型,Python是动态类型。3.Golang编译型语言执行速度快,Python解释型语言开发速度快。

Golang vs.C:评估速度差Golang vs.C:评估速度差Apr 18, 2025 am 12:20 AM

Golang通常比C 慢,但Golang在并发编程和开发效率上更具优势:1)Golang的垃圾回收和并发模型使其在高并发场景下表现出色;2)C 通过手动内存管理和硬件优化获得更高性能,但开发复杂度较高。

Golang:云计算和DevOps的关键语言Golang:云计算和DevOps的关键语言Apr 18, 2025 am 12:18 AM

Golang在云计算和DevOps中的应用广泛,其优势在于简单性、高效性和并发编程能力。1)在云计算中,Golang通过goroutine和channel机制高效处理并发请求。2)在DevOps中,Golang的快速编译和跨平台特性使其成为自动化工具的首选。

See all articles

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

AI Hentai Generator

AI Hentai Generator

免费生成ai无尽的。

热工具

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

功能强大的PHP集成开发环境

记事本++7.3.1

记事本++7.3.1

好用且免费的代码编辑器

mPDF

mPDF

mPDF是一个PHP库,可以从UTF-8编码的HTML生成PDF文件。原作者Ian Back编写mPDF以从他的网站上“即时”输出PDF文件,并处理不同的语言。与原始脚本如HTML2FPDF相比,它的速度较慢,并且在使用Unicode字体时生成的文件较大,但支持CSS样式等,并进行了大量增强。支持几乎所有语言,包括RTL(阿拉伯语和希伯来语)和CJK(中日韩)。支持嵌套的块级元素(如P、DIV),

EditPlus 中文破解版

EditPlus 中文破解版

体积小,语法高亮,不支持代码提示功能

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具