Skip to content

Teddy-Zhu/SilentGo-JSON

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#SilentGo JSON Parser

the json parser for java it's faster and lighter than fastjson and gson ...

How to use

Usage

simple eg:

    // common parser
    String json = "[12,{\"axx\":[1.2,22,\"xxx\"]}]";
    JSONEntity entity = JSON.parse(json)
    // lazy parser
    String json = "[12,{\"axx\":[1.2,22,\"xxx\"]}]";
    JSONEntity entity = JSON.parse(json,new JSONConfig(true));
    //parse complex object
    String jsonStirng = "{.....}";
    T object  = JSON.parse(jsonString, Class<T> tClass);

license MIT

About

fast and light json parser for java

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages