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.
如果我有一个文件,其中一个接一个地保存了许多协议缓冲区消息,我如何将该文件读回 Java 中的集合?
你是如何界定 protobuf 消息的?
如果您只是一个接一个地编写它们,不使用writeDelimitedTo就无法将它们读回,这不是协议缓冲区支持的格式。
writeDelimitedTo
如果你确实 use writeDelimitedTo,我想你可以找出相应的 parse 方法。