Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

b-sullender/json-plus

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
29 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

json-plus

JSON parser and generator with UTF8 support.

You do not need to compile anything to use json-plus, just include json-plus.cpp and json-plus.h in your application. Everything is contained in the json_plus namespace.

See example.cpp for a detailed example that creates a json string, parses it and prints to the console.

json-plus is cross-platform compatible.

LICENSE TERMS

  This software is provided 'as-is', without any express or implied
  warranty.  In no event will the authors be held liable for any damages
  arising from the use of this software.
  
  Permission is granted to anyone to use this software for any purpose,
  including commercial applications, and to alter it and redistribute it
  freely, subject to the following restrictions:
  
  (1) If any part of the source code for this software is distributed, then this
      README file must be included, with this copyright and no-warranty notice
      unaltered; and any additions, deletions, or changes to the original files
      must be clearly indicated in accompanying documentation.
  (2) Permission for use of this software is granted only if the user accepts
      full responsibility for any undesirable consequences; the authors accept
      NO LIABILITY for damages of any kind.

Functions

JSON_OBJECT and JSON_ARRAY classes

You can use the JSON_OBJECT and JSON_ARRAY classes instead of using the JSON_Get*** functions.
Here is a simple example:

JSON_PARSER_CONTEXT context;
const CHAR* json_string = "{ \"username\":\"John\", \"password\":\"1234\" }";
JSON_OBJECT json_file = JSON_Parse(json_string, &context);
const CHAR* username = json_file.String("username");

JSON_OBJECT and JSON_ARRAY classes

JSON Resources

Releases

Packages

Contributors

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.