Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

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

Sign up

A lightweight, yet extremely fast JSON parser and generator (still under heavy development)

License

NotificationsYou must be signed in to change notification settings

kmecpp/JFlame

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A lightweight and extremely fast JSON parser and generator. This project aims to provide all the tools necessary to quickly and effectively create applications utilizing JSON. The JFlame's main goal is simply raw power, it's designed to run as fast as possible and as a result, a lot of the ideas for the parser came from ralfstx'sminimal-json. The API was designed to be as simple and intuitive as possible but still include everything you need to create, and manipulate simple JSON.

##Examples:

###Manipulate JSON dataParse a JSON string

JsonValue value = Json.parse(jsonString);

Generate a JSON string from an object

String json = jsonValue.toString();

Generate a formatted JSON string from an object

String jsonFormatted = jsonObj.getFormatted();

Customize your JSON formatting

String jsonFormatted = jsonObj.getFormatted("\t");

###Interacting with REST webservices

Read data

Json.readJsonFromUrl("http://example.com/users/joe/stats");

Post data

Json.postJsonToUrl("http://example.com/users/joe/stats/add", jsonObj);

Maven

<repository><id>kmecpp-repo</id><url>http://repo.kmecpp.com/maven</url></repository><dependency><groupId>com.kmecpp</groupId><artifactId>jflame</artifactId><version>1.0</version></dependency>

About

A lightweight, yet extremely fast JSON parser and generator (still under heavy development)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages


[8]ページ先頭

©2009-2025 Movatter.jp