Lines Matching refs:JSON
9 …RapidJSON is a C++ library for parsing and generating JSON. You may check all [features](doc/featu…
25 …Yes. A simple executable which parses a JSON and prints its statistics is less than 30KB on Window…
55 …thub.com/miloyip/nativejson-benchmark) has a listing of open-source C/C++ JSON libraries. [json.or…
57 ## JSON section in FAQ
59 1. What is JSON?
61 …JSON (JavaScript Object Notation) is a lightweight data-interchange format. It uses human readable…
63 2. What are applications of JSON?
65 …JSON are commonly used in web applications for transferring structured data. It is also used as a …
67 2. Does RapidJSON conform to the JSON standard?
69 … It can handle corner cases, such as supporting null character and surrogate pairs in JSON strings.
79 Document Object Model (DOM) is an in-memory representation of JSON for query and manipulation.
91 …he JSON strings directly into the input JSON. This is an optimization which can reduce memory cons…
95 …The parser generates an error when the input JSON contains invalid syntax, or a value can not be r…
99 …des the error code and offset (number of characters from the beginning of JSON). The error code ca…
101 7. Why not just using `double` to represent JSON number?
103 …into `double` without loss of precision. So the parsers detects whether a JSON number is convertib…
126 Let's take the following two DOM trees represented as JSON documents:
191 1. Why don't we just `printf` a JSON? Why do we need a `Writer`?
193 …JSON is well-formed. Calling SAX events incorrectly (e.g. `StartObject()` pairing with `EndArray()…
197 …, if the execution environment supports multi-threading, user can parse a JSON in a separate threa…
211 …JSON uses UTF-16 encoding when escaping unicode character, e.g. `\u5927` representing Chinese char…
215 4. Can it handle `\u0000` (null character) in JSON string?
217 …Yes. RapidJSON fully support null character in JSON string. However, user need to be aware of it a…
225 1. I have a big JSON file. Should I load the whole file to memory?
229 2. Can I parse JSON while it is streamed from network?
233 3. I don't know what encoding will the JSON be. How to handle them?
251 … open source JSON library. There is a [benchmark](https://github.com/miloyip/nativejson-benchmark)…
259 …hitespace skipping. This improves performance of parsing indent formatted JSON. Define `RAPIDJSON_…
265 …, `Reader` consumes memory portional to maximum depth of JSON tree, plus maximum length of JSON st…
271 …Some applications need to process very large JSON files. Some server-side applications need to pro…
281 …game programmer and he just knew about JSON at that time and would like to apply JSON in future pr…