【GOSN】Gosn是什么?怎么使用?

InterviewCoder

#

Gson 是 google 开发的一个开源 Json 解析库,使用十分的方便,在 maven 当中导入的方式为:

1
2
3
4
5
<dependency>  
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.2</version>
</dependency>

其中 2.8.2 为版本号,最新版本以及源码可以在官方的 github 上查看:https://github.com/google/gson

这里给出最简单的 Gson 的使用方法:

1
2
3
4
5
6
7
8
9
Object obj = new Object();

//Object转Json字符串

String obstr = new Gson().toJson(object);

//Json字符串转Object

Object object = new Gson().fromJson(obstr);

# 关于我

Brath 是一个热爱技术的 Java 程序猿,公众号「InterviewCoder」定期分享有趣有料的精品原创文章!

InterviewCoder

非常感谢各位人才能看到这里,原创不易,文章如果有帮助可以关注、点赞、分享或评论,这都是对我的莫大支持!

评论