Gson 正在参加 2021 年度 OSC 中国开源项目评选,请投票支持!
Gson 在 2021 年度 OSC 中国开源项目评选 中已获得 {{ projectVoteCount }} 票,请投票支持!
2021 年度 OSC 中国开源项目评选 正在火热进行中,快来投票支持你喜欢的开源项目!
2021 年度 OSC 中国开源项目评选 >>> 中场回顾
Gson 获得 2021 年度 OSC 中国开源项目评选「最佳人气项目」 !
授权协议 Apache
开发语言 Java 查看源码 »
操作系统 跨平台
软件类型 开源软件
开源组织 Google
地区 不详
投 递 者 红薯
适用人群 未知
收录时间 2009-12-31

软件简介

Gson 是 Google 提供的用来在 Java 对象和 JSON 数据之间进行映射的 Java 类库。可以将一个 JSON 字符串转成一个 Java 对象,或者反过来。

示例代码:

Gson gson = new Gson();
int[] ints = {1, 2, 3, 4, 5};
String[] strings = {"abc", "def", "ghi"};

(Serialization)
gson.toJson(ints);     ==> prints [1,2,3,4,5]
gson.toJson(strings);  ==> prints ["abc", "def", "ghi"]

展开阅读全文

代码

的 Gitee 指数为
超过 的项目

评论

点击加入讨论🔥(4) 发布并加入讨论🔥
发表了资讯
2018/05/25 07:53

Gson 2.8.5 发布,Google 开源的 Java JSON 类库

Gson 2.8.5 已发布,Gson 是 Google 提供的用来在 Java 对象和 JSON 数据之间进行映射的 Java 类库。 更新内容: 当抛出 AssertionError 和 IllegalArgumentException 时打印 Gson 版本 将 utils.VersionUtils 类移至 internal.JavaVersion 解决了用户提交的在 Debian 上使用 Java 9 报错的 issue 更多详情可查阅更新日志 Maven: <dependency>   <groupId>com.google.code.gson</groupId>   <artifactId>gson</artifactI...

10
4
发表了资讯
2018/05/04 16:34

Gson 2.8.4 发布,Google 开源的 Java JSON 类库

Gson 2.8.4 已发布,Gson 是 Google 提供的用来在 Java 对象和 JSON 数据之间进行映射的 Java 类库。 2.8.4 更新内容 Added a new FieldNamingPolicy, LOWER_CASE_WITH_DOTS that mapps JSON name someFieldName to some.field.name Fixed issue https://github.com/google/gson/issues/1305 by removing compile/runtime dependency on sun.misc.Unsafe 完整更新日志:https://github.com/google/gson/blob/master/CHANGELOG....

8
5
发表了资讯
2017/09/26 16:03

Gson 2.8.2 发布,Java 的 JSON 类库

Gson 2.8.2 发布了。Gson 是 Google 提供的用来在 Java 对象和 JSON 数据之间进行映射的 Java 类库。 该版本更新内容请关注发布主页或更新日志。 下载地址: Source code (zip) Source code (tar.gz)

4
19
发表了资讯
2017/05/31 10:12

Gson 2.8.1 发布,Java 的 JSON 类库

Gson 2.8.1 发布了。Gson 是 Google 提供的用来在 Java 对象和 JSON 数据之间进行映射的 Java 类库。 下载地址: Source code (zip) Source code (tar.gz) 完整更新内容请查看发行首页和更新日志。

5
22
发表了资讯
2016/02/28 00:00

Gson 2.6.2 发布,Google 的 JSON 处理库

Gson 2.6.2 发布,Gson 是 Google 提供的用来在 Java 对象和 JSON 数据之间进行映射的 Java 类库。可以将一个 JSON 字符串转成一个 Java 对象,或者反过来。 该版本改进内容包括: Fixed an NPE bug with @JsonAdapter annotation Added back OSGI manifest Some documentation typo fixes 下载地址: https://github.com/google/gson/releases/tag/gson-parent-2.6.2...

1
22
发表了资讯
2016/02/14 00:00

Gson 2.6 和 2.6.1 发布,Java 的 JSON 类库

Gson 发布 2.6 版本,很快又发布了 2.6.1 版本,改进内容包括: Version 2.6.1 2016-02-11 Fix: The 2.6 release targeted Java 1.7, but we intend to target Java 1.6. The 2.6.1 release is identical to 2.6, but it targets Java 1.6. Version 2.6 2016-02-11 Permit timezones without minutes in the default date adapter. Update reader and writer for RFC 7159. This means that strings, numbers, booleans and nu...

0
10
发表了资讯
2015/12/10 00:00

Gson 2.5.0 发布,Java的JSON类库

Gson 2.5.0 发布,更新如下: Updated minimum JDK version to 1.6 Improved Date Deserialization by accepting many date formats Added support for java.util.Currency, AtomicLong, AtomicLongArray, AtomicInteger, AtomicIntegerArray, AtomicBoolean. This change is backward-incompatible because the earlier version of Gson used the default serialization which wasn't intuitive. We hope that these classes ...

5
23
没有更多内容
加载失败,请刷新页面
点击加载更多
加载中
下一页
发表了博客
{{o.pubDate | formatDate}}

{{formatAllHtml(o.title)}}

{{parseInt(o.replyCount) | bigNumberTransform}}
{{parseInt(o.viewCount) | bigNumberTransform}}
没有更多内容
暂无内容
发表了问答
{{o.pubDate | formatDate}}

{{formatAllHtml(o.title)}}

{{parseInt(o.replyCount) | bigNumberTransform}}
{{parseInt(o.viewCount) | bigNumberTransform}}
没有更多内容
暂无内容
暂无内容
4 评论
199 收藏
分享
OSCHINA
登录后可查看更多优质内容
返回顶部
顶部