All Projects → alibaba → Fastjson

alibaba / Fastjson

Licence: apache-2.0
A fast JSON parser/generator for Java.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Fastjson

Go
A high-performance 100% compatible drop-in replacement of "encoding/json"
Stars: ✭ 10,248 (-57.29%)
Mutual labels:  json, serialization, json-parser, deserialization
Java
jsoniter (json-iterator) is fast and flexible JSON parser available in Java and Go
Stars: ✭ 1,308 (-94.55%)
Mutual labels:  json, serialization, json-parser, deserialization
Thorsserializer
C++ Serialization library for JSON
Stars: ✭ 241 (-99%)
Mutual labels:  json, serialization, json-parser, json-serialization
Dart Json Mapper
Serialize / Deserialize Dart Objects to / from JSON
Stars: ✭ 206 (-99.14%)
Mutual labels:  json, serialization, deserialization
Orjson
Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy
Stars: ✭ 2,595 (-89.19%)
Mutual labels:  json, serialization, deserialization
Aspjson
A fast classic ASP JSON parser and encoder for easy JSON manipulation to work with the new JavaScript MV* libraries and frameworks.
Stars: ✭ 165 (-99.31%)
Mutual labels:  json, serialization, deserialization
Pyjson tricks
Extra features for Python's JSON: comments, order, numpy, pandas, datetimes, and many more! Simple but customizable.
Stars: ✭ 131 (-99.45%)
Mutual labels:  json, serialization, deserialization
Jsonapi Rb
Efficiently produce and consume JSON API documents.
Stars: ✭ 219 (-99.09%)
Mutual labels:  json, serialization, deserialization
Mashumaro
Fast and well tested serialization framework on top of dataclasses
Stars: ✭ 208 (-99.13%)
Mutual labels:  json, serialization, deserialization
Flatcc
FlatBuffers Compiler and Library in C for C
Stars: ✭ 434 (-98.19%)
Mutual labels:  json, serialization, json-parser
JsonFormatter
Easy, Fast and Lightweight Json Formatter. (Serializer and Deserializer)
Stars: ✭ 26 (-99.89%)
Mutual labels:  serialization, json-serialization, json-parser
Daw json link
Static JSON parsing in C++
Stars: ✭ 146 (-99.39%)
Mutual labels:  json, serialization, json-parser
Spotify Json
Fast and nice to use C++ JSON library.
Stars: ✭ 145 (-99.4%)
Mutual labels:  json, json-parser, json-serialization
Jsons
🐍 A Python lib for (de)serializing Python objects to/from JSON
Stars: ✭ 178 (-99.26%)
Mutual labels:  json, serialization, json-parser
Noproto
Flexible, Fast & Compact Serialization with RPC
Stars: ✭ 138 (-99.42%)
Mutual labels:  json, serialization, deserialization
Json Dry
🌞 JSON-dry allows you to serialize & revive objects containing circular references, dates, regexes, class instances,...
Stars: ✭ 214 (-99.11%)
Mutual labels:  json, json-parser, json-serialization
Jsonapi Rails
Rails gem for fast jsonapi-compliant APIs.
Stars: ✭ 242 (-98.99%)
Mutual labels:  json, serialization, deserialization
Easyjson
Fast JSON serializer for golang.
Stars: ✭ 3,512 (-85.36%)
Mutual labels:  json, json-parser, json-serialization
Yyjson
The fastest JSON library in C
Stars: ✭ 1,894 (-92.11%)
Mutual labels:  json, serialization, deserialization
Borer
Efficient CBOR and JSON (de)serialization in Scala
Stars: ✭ 131 (-99.45%)
Mutual labels:  json, serialization, deserialization

fastjson

Java CI Codecov Maven Central GitHub release License Gitpod Ready-to-Code Fuzzing Status

QualityGate

Fastjson is a Java library that can be used to convert Java Objects into their JSON representation. It can also be used to convert a JSON string to an equivalent Java object. Fastjson can work with arbitrary Java objects including pre-existing objects that you do not have source-code of.

Fastjson Goals

  • Provide the best performance on the server-side and android client
  • Provide simple toJSONString() and parseObject() methods to convert Java objects to JSON and vice-versa
  • Allow pre-existing unmodifiable objects to be converted to and from JSON
  • Extensive support of Java Generics
  • Allow custom representations for objects
  • Support arbitrarily complex objects (with deep inheritance hierarchies and extensive use of generic types)

fastjson

Documentation

Benchmark

https://github.com/eishay/jvm-serializers/wiki

Download

Maven

<dependency>
    <groupId>com.alibaba</groupId>
    <artifactId>fastjson</artifactId>
    <version>1.2.76</version>
</dependency>
<dependency>
    <groupId>com.alibaba</groupId>
    <artifactId>fastjson</artifactId>
    <version>1.1.72.android</version>
</dependency>

Gradle via JCenter

compile 'com.alibaba:fastjson:1.2.76'
compile 'com.alibaba:fastjson:1.1.72.android'

Please see this Wiki Download Page for more repository info.

License

Fastjson is released under the Apache 2.0 license.

Copyright 1999-2020 Alibaba Group Holding Ltd.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at the following link.

     http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].