我使用libgdx来构建我的项目,并且使用 JSONObject 类时遇到了问题。当我添加import org.json.JSONObject
时,它表示无法解决。如何将该库添加到我的项目中?
以下是我没有成功的尝试:
json-simple-1.1.jar
并将其放在core / build / libs文件夹中。无法使用import.org.json.simple.JSONObject
。 "Core -> Libraries -> org -> json"
下看到我想要的类,但我无法将它们添加到我的项目中。我得到一个“无法折射,类在jar文件中”错误。有没有我还没有尝试解决这个问题?当我尝试使用其他外部库时,我觉得我会再遇到这种情况。
谢谢。
答案 0 :(得分:27)
如果您使用的是LibGdx,它不会带有Gradle设置,可以简化多项目构建。
请看这里:http://mvnrepository.com/artifact/org.json/json/。
您需要将compile 'org.json:json:20160212'
添加到您的热门build.gradle
,例如:
dependencies {
compile 'org.json:json:20160212'
}