Converting JSON file to flatbuffers file

Viewed 38

I want to convert a JSON file into flatbuffers file (serialize JSON data to flatbuffers data). I already created flatbuffers schema but I do not know where to go from here. The documentation is not clear. It does not contain much detail.

1 Answers

Did you read the tutorial? There is a whole section on "Using flatc as a JSON Conversion Tool" with examples.

Related