[Go] 使用protobuf进行序列化和反序列化

Posted taoshihan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Go] 使用protobuf进行序列化和反序列化相关的知识,希望对你有一定的参考价值。

先定义消息类型

orders.proto

syntax = "proto2";
package message;
message Orders {
required int32 order_id=1;
required string title=2;
}

在GOPATH创建目录和编译这个消息类型输出到该目录,包名是message

mkdir $GOPATH/src/message;protoc --go_out $GOPATH/src/message orders.proto 

编写go文件进行序列化和反序列化刚才生成的包里的类型结构体数据

package main

import "message"

import "github.com/golang/protobuf/proto"

import "fmt"

func main() {
    orders := &message.Orders{
        OrderId: proto.Int32(1),
        Title:   proto.String("第一个订单"),
    }
    //序列化成二进制数据
    ordersBytes, _ := proto.Marshal(orders)
    //反序列化二进制数据
    twoOrders := &message.Orders{}
    proto.Unmarshal(ordersBytes, twoOrders)
    fmt.Println(twoOrders.GetTitle())
    fmt.Println(twoOrders.GetOrderId())

}

技术图片

以上是关于[Go] 使用protobuf进行序列化和反序列化的主要内容,如果未能解决你的问题,请参考以下文章

了解 Protobuf-net 属性的序列化和反序列化

netty编解码之使用protobuf

使用非标准构造函数序列化和反序列化对象 - protobuf-net

Google 的Protobuf 的使用方式(序列化和反序列化工具-编解码)

Avro 与 Protobuf 的性能指标

GOOGLE-PROTOBUF与FLATBUFFERS数据的序列化和反序列化