We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Fastjson是阿里巴巴开源项目中的一个JSON库,它能将JavaBean序列化为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>