Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在没有任何 .proto 文件的情况下解析传入的谷歌协议缓冲区数据报?我现在只是使用协议缓冲区对其进行序列化,但不知道 IDL 文件。
我正在寻找一种通过某种反射来迭代任何值的方法?这可能吗?
谢谢!
protoc --decode_raw < my_file
检查输出时需要考虑以下事项:
如果您想以编程方式解码消息,则可以在使用上述方法弄清楚字段的含义后编写自己的 .proto 文件。