gson.jar包下载

摘要

Gson是一个Java库,可以用来将Java对象转换成它们的JSON表示。它还可以用来将JSON字符串转换成等价的Java对象。Gson is a Java library

书单推荐:成为Java顶级程序员架构师 ,这20来本(高薪)必看点击获取

书单推荐:成为Java顶级程序员架构师 ,这20来本(高薪)必看点击获取

Gson是一个Java库,可以用来将Java对象转换成它们的JSON表示。它还可以用来将JSON字符串转换成等价的Java对象。

Gson is a Java library that can be used to convert Java Objects into their JSON representation. It can also be used to convert a JSON string to an equivalent Java object.


<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->

<dependency>

    <groupId>com.google.code.gson</groupId>

    <artifactId>gson</artifactId>

    <version>2.8.9</version>

</dependency>