This repository has been archived by the owner on Oct 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Tutorial_cn
wenshao edited this page May 3, 2016
·
12 revisions
Fastjson是阿里巴巴开源项目中的一个JSON库,它能将JavaBean序列化为JSON格式字符串。
- Fastjson提供简洁易用的API。JSON.toJSONString以及JSON.parseObject两个方法就直接能满足大部分需求。
- 丰富的功能。支持泛型;支持Enum;支持各种日期格式,包括ISO8601、.NET日期格式、sql日期类型、Oracle日期类型;支持循环应用;支持JSONPath。支持多种方式自定义序列化。
- 最好的性能。Fastjson提供在Java SE上以及Android Dalvik上最好的性能。
- 开源。Fastjson采用商业友好的Apache License 2.0。
- 使用广泛。Fastjson不仅在阿里巴巴内部使用,也被业界广泛使用,在2012/2013年被开源中国评选的最受欢迎的TOP 10项目之一。
- 对Android特别优化支持。Fastjson提供针对Android特别优化的版本,jar更小(小于200k),在android性能远超原生json库以及其他库。
首先你可以在fastjson项目的Release列表中获得最新发布的版本信息。 你可以从maven中央仓库直接下载最新版本,比如http://repo1.maven.org/maven2/com/alibaba/fastjson/1.2.11/ 。
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>x.x.x</version>
</dependency>
其中x.x.x是你所需要配置的版本,比如1.2.11。
Fastjson提供针对Android特别优化的版本,android版本也发布在maven中央仓库中。比如fastjson-1.1.51.android下载地址是http://repo1.maven.org/maven2/com/alibaba/fastjson/1.1.51.android/ 也可以使用Maven配置,例如:
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>x.x.x.android</version>
</dependency>
如有需要修改本注脚,请联系阿里巴巴,
© Alibaba Fastjson Develop Team
注明: 版权所有阿里巴巴,请注明版权所有者
If you need to amend this footnote, please contact Alibaba.
© Alibaba Fastjson Develop Team
Note: Copyright Alibaba, please indicate the copyright owner