如何将Flatbuffer数据文件转换为json?

时间:2018-04-20 06:41:50

标签: flatbuffers

我使用flatbuffer将数据编码到名为'person.txt'的文件中,如何将其转换为json文件?

我尝试'flatc --json person.txt person.json',但失败了。

我有'person.fbs,person.txt',怎么做?

1 个答案:

答案 0 :(得分:3)

您还需要在正在执行的命令中提供架构路径。

flatc.exe --raw-binary -t <path to fbs schema file> -- <path to flatbuffer binary file>