Java 的快速 JSON 解析器/生成器fastjson

Java 的快速 JSON 解析器/生成器fastjson

Fastjson 目标

  • 在服务端和安卓客户端提供最佳性能
  • 提供简单的 toJSONString() 和 parseObject() 方法来将 Java 对象转换为 JSON,反之亦然
  • 允许预先存在的不可修改对象与 JSON 相互转换
  • 对 Java 泛型的广泛支持
  • 允许对象的自定义表示
  • 支持任意复杂的对象(具有深层继承层次结构和泛型类型的广泛使用)

文档

基准

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

下载

代码

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

通过 JCenter 的 Gradle

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

有关更多存储库信息,请参阅此Wiki 下载页面

执照

Fastjson 是在Apache 2.0 许可下发布的。

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.


上一篇:带你读《跟老男孩学Linux运维:核心基础篇(上)(第2版)》之二:Linux系统介绍与环境搭建准备


下一篇:通过线程池 进行模拟七龙珠的寻找