android studio无法解析导入org.json.JSONObject

时间:2015-02-18 16:36:34

标签: android json gradle libgdx libraries

我使用libgdx来构建我的项目,并且使用 JSONObject 类时遇到了问题。当我添加import org.json.JSONObject时,它表示无法解决。如何将该库添加到我的项目中?

以下是我没有成功的尝试:

  1. 我下载了json-simple-1.1.jar并将其放在core / build / libs文件夹中。无法使用import.org.json.simple.JSONObject
  2. 当在Android Studio中浏览树作为“包”下拉列表时,我可以在"Core -> Libraries -> org -> json"下看到我想要的类,但我无法将它们添加到我的项目中。我得到一个“无法折射,类在jar文件中”错误。
  3. 有没有我还没有尝试解决这个问题?当我尝试使用其他外部库时,我觉得我会再遇到这种情况。

    谢谢。

1 个答案:

答案 0 :(得分:27)

如果您使用的是LibGdx,它不会带有Gradle设置,可以简化多项目构建。

请看这里:http://mvnrepository.com/artifact/org.json/json/

您需要将compile 'org.json:json:20160212'添加到您的热门build.gradle,例如:

dependencies {
   compile 'org.json:json:20160212'
}