先去官網(wǎng)下載protobuf的源碼
成都創(chuàng)新互聯(lián)公司主營平潭網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,app開發(fā)定制,平潭h5微信小程序開發(fā)搭建,平潭網(wǎng)站營銷推廣歡迎平潭等地區(qū)企業(yè)咨詢
https://github.com/google/protobuf/releases
可以先下載本地,然后上傳到虛擬機中
我選擇的是Source code(tar.gz)
安裝依賴包(如果缺少包,可能會報錯)
yum install -ygcc gcc-c++autoconf automake libtool curlmake g++unzip
解壓后,進入protobuf-3.5.1目錄中,運行
./autogen.sh命令
執(zhí)行./configure命令
make && make install
檢測protobuf是否安裝成功?
protoc -h
由于要使用Go語言,因此,需要安裝相應(yīng)的插件
先去官網(wǎng)將插件×××到本地:
https://github.com/golang/protobuf/releases
上傳到虛擬機,進行解壓
tar -zxvf protobuf-1.1.0.tar.gz
重命名
mv protobuf-1.1.0.tar.gz protobuf
查詢GOROOT的值是什么,如我的是:
echo $GOROOT
/usr/local/gohome/go
在GOROOT目錄下,創(chuàng)建下面的目錄src/github.com/golang
mkdir -p /usr/local/gohome/go/src/github.com/golang
將protobuf目錄移動到$GOROOT/src/github.com/golang 目錄下
進入$GOROOT/src/github.com/golang/protobuf
make install
舉例:
先手動創(chuàng)建一個文件test.proto
//指定版本 //注意proto3與proto2的寫法有些不同 syntax = "proto3"; //包名,通過protoc生成時go文件時 package test; //手機類型 //枚舉類型第一個字段必須為0 enum PhoneType { HOME = 0; WORK = 1; } //手機 message Phone { PhoneType type = 1; string number = 2; } //人 message Person { //后面的數(shù)字表示標識號 int32 id = 1; string name = 2; //repeated表示可重復 //可以有多個手機 repeated Phone phones = 3; } //聯(lián)系簿 message ContactBook { repeated Person persons = 1; }
執(zhí)行下面的命令,生成相應(yīng)的代碼文件
protoc --go_out=. *.proto
或者
protoc --go_out=. test.proto
Go語言中,如何使用呢?
1、首先創(chuàng)建test包,然后將生成的test.pb.go 上傳到test包下
2、編寫測試用例
內(nèi)容如下:
package main import ( "fmt" "github.com/golang/protobuf/proto" "io/ioutil" "os" "xingej-go/xingej-go/xingej-go666/protobuf/test" ) func write() { p1 := &test.Person{ Id: 1, Name: "spark", } book := &test.ContactBook{} book.Persons = append(book.Persons, p1) //編碼數(shù)據(jù) data, _ := proto.Marshal(book) //將數(shù)據(jù)寫入文件 ioutil.WriteFile("./pb_test.txt", data, os.ModePerm) } func read() { data, _ := ioutil.ReadFile("./pb_test.txt") book := &test.ContactBook{} //解碼數(shù)據(jù) proto.Unmarshal(data, book) for _, v := range book.Persons { fmt.Println(v.Id, v.Name) } } func main() { write() read() }
本文測試樣例,參考了下面的文章:
https://www.cnblogs.com/jkko123/p/7161843.html