Gson library in Android Studio

Can someone give me step by step guide to add the Gson library to an Android project?

I tried the JSON built-in library but that seems to be a bit tedious right now. I saw a couple of examples based on Gson, and that seems really easy.

198584 次浏览

build.gradle添加以下依赖项:

implementation 'com.google.code.gson:gson:2.8.7'

或者通过单击发行版并查找. JAR 文件来下载 JAR 文件 来自玛文

用 Maven 的最新版本替换2.8.7。

访问 GitHub 回收站获取文档和更多信息。

Read Google-gson

Gson 是一个 Java 库,可用于将 Java 对象转换为 它也可以用来转换一个 JSON string to an equivalent Java object.

MODULE LEVEL build.gradle配置中添加以下代码行:

dependencies {
implementation 'com.google.code.gson:gson:2.8.8' // Old 2.8.6
}

使用 gradle dependencies获取项目中的 葛森

dependencies {
implementation 'com.google.code.gson:gson:2.8.2'
}

格拉德尔:

dependencies {
implementation 'com.google.code.gson:gson:2.8.5'
}

美芬:

<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.5</version>
</dependency>

Gson jar 可以从 Maven Central 下载。

There is no need of adding JAR to your project by yourself, just add dependency in build.gradle (Module lavel). ALSO always try to use the upgraded version, as of now is

dependencies {
implementation 'com.google.code.gson:gson:2.8.5'
}

因为每个增量版本都有一些错误修复或升级,正如上面提到的 给你

如果您打算将它与 翻新库一起使用,我建议您使用 Square 的 gson 库:

implementation 'com.squareup.retrofit2:converter-gson:2.4.0'