Android 和 Protobuf
我使用 android sdk 2.1 和 protobuf 2.4.1
这是我的 .proto 文件:
package com.example.proto;
option optimize_for = LITE_RUNTIME;
message DatabaseInsertRequest {
optional string stringInsert = 1;
}
message DatabaseSelectRequest {
optional string stringSelect = 1;
}
message DatabaseUpdateRequest {
optional string stringUpdate = 1;
}
我将此 .proto 编译为类(使用 protoc)
在我尝试使用套接字发送此消息并收到错误后, ,(忘记它) 您可以给我看一下工作示例吗?
i use android sdk 2.1, and protobuf 2.4.1
this is my .proto file:
package com.example.proto;
option optimize_for = LITE_RUNTIME;
message DatabaseInsertRequest {
optional string stringInsert = 1;
}
message DatabaseSelectRequest {
optional string stringSelect = 1;
}
message DatabaseUpdateRequest {
optional string stringUpdate = 1;
}
i compiled this .proto to class (using protoc)
after i try send this message with socket and got a error, (forget it)
may you please show me working example ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看一下文档!
JavaTutorial
have a look at the documentation!
JavaTutorial
上面是我的 ProtoBuf 与 Android 集成的示例代码中的代码片段。如果您需要进一步的帮助,请告诉我。
Above is the code snippet from my sample code for ProtoBuf integration with Android. Let me know if you need further help.