在一个vs2013解决方案下创建了三个工程文件,在其中一个工程(Foundation)中放有CtrlMessage.pb.h和ControlMessageTags的头文件。编译后出错总共68处。错误 2 error LNK2019: 无法解析的外部符号 "void __cdecl google::....
分类:
其他好文 时间:
2015-12-04 20:49:33
阅读次数:
4851
Windows7上配置Python Protobuf 操作步骤...
分类:
编程语言 时间:
2015-12-02 09:18:11
阅读次数:
140
protobuf安装/使用原本是要在官网上下载的:http://protobuf.googlecode.com/files/protobuf-2.5.0.tar.gz可惜已被墙,幸好有好心人提供了以下地址:http://pan.baidu.com/s/1pJlZubT为了说明安装过程中文件的作用,我...
分类:
其他好文 时间:
2015-11-30 20:34:20
阅读次数:
319
[cpp]view plaincopy最近应为工作的需要,合作的部门提供了protobuf的接口,总结了一下使用的过程和方法如下:下载protobuf-2.3.0:http://protobuf.googlecode.com/files/protobuf-2.3.0.zip安装:unzipproto...
分类:
其他好文 时间:
2015-11-25 13:23:32
阅读次数:
137
NIO+Netty5各种RPC架构实战演练课程课程观看地址:http://www.xuetuwuyou.com/course/52课程出自学途无忧网:http://www.xuetuwuyou.com/课程介绍一、课程使用到的软件及版本:jdk1.7+netty5+spring4+maven3+protobuf+thrift-0.9.3二、课程设计到的技术点:nio,netty,protobu..
分类:
Web程序 时间:
2015-11-24 18:52:59
阅读次数:
153
1.Protocol Buffers简介Protocol Buffers (ProtocolBuffer/ protobuf )是Google公司开发的一种数据描述语言,类似于XML能够将结构化数据序列化,可用于数据存储、通信协议等方面。现阶段支持C++、JAVA、Python等三种编程语言。2.p...
分类:
其他好文 时间:
2015-11-23 18:41:29
阅读次数:
258
1. 下载protobuf编译工具 序列化是将数据转换为一个特定的类 http://pan.baidu.com/s/1qWrxHxU 下载解压,它不是用来放在你的项目里2.打开终端 依次输入并等待指令执行 ./configure make sudo make install (需要...
分类:
其他好文 时间:
2015-11-22 11:22:14
阅读次数:
118
protostuff 是简化protobuf开发的java的操作工具jar 。 先看看 protobuf 的使用流程: 1.先编写proto文件格式,例如 message?Person?{??
??required?int32?id?=?1;??
??required?string?name?=...
分类:
其他好文 时间:
2015-11-14 23:39:40
阅读次数:
533
下面是proto描述文件的定义message Person { required string name = 1; required int32 id = 2; optional string email = 3; enum PhoneType { MOBILE = 0; HO...
分类:
编程语言 时间:
2015-11-12 13:12:52
阅读次数:
232
1、Protobuf-Net 序列化2、实体类序列化与反序列化一 (XmlSerializer)3、实体类序列化与反序列化二 (DataContractSerializer)4、Json 序列化与反序列化一...