gpt4 book ai didi

Java 对象类型到 Protobuf

转载 作者:行者123 更新时间:2023-11-30 05:31:03 39 4
gpt4 key购买 nike

有没有办法将java对象类型序列化为protobuf以及proto文件是什么样的。

所需功能:

Object object = TutorialAPI.getObject();
ProtoMessage protoMessage = ProtoMessage.newBuilder()
.setValue(object)
.build;

最佳答案

您可以将对象序列化为 JSON 字符串,然后使用 setValue。

Object object = TutorialAPI.getObject();
String json = convertToJson(object)
ProtoMessage protoMessage = ProtoMessage.newBuilder()
.setValue(json)
.build();

关于Java 对象类型到 Protobuf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57558766/

39 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com