我是一个全新的java新手,我有这个问题。我尝试解码Json,为了做到这一点,我想导入这些包:
import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;
import org.json.simple.parser.ParseException;
“导入无法解决”......这些软件包是否已不再使用,或者我是否必须做其他事情才能使其正常工作?
提前完成。
答案 0 :(得分:13)
可能你的简单json.jar文件不在你的类路径中。
答案 1 :(得分:5)
我在Spring Integration项目中面临同样的问题。我在pom.xml文件中添加了以下JSON依赖项。它对我有用。
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20090211</version>
</dependency>
可以在此处找到版本列表:https://mvnrepository.com/artifact/org.json/json
答案 2 :(得分:2)
缺少jar文件。您可以下载jar文件并将其作为外部库添加到项目中。您可以从
下载http://www.findjar.com/jar/com/googlecode/json-simple/json-simple/1.1/json-simple-1.1.jar.html
答案 3 :(得分:2)
试试这个
<!-- https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple -->
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1.1</version>
</dependency>
答案 4 :(得分:1)
尝试在build.gradle依赖项
中导入它compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1'
答案 5 :(得分:0)
对于 vs 代码中的简单控制台程序,这对我有用:
从以下位置下载 json-simple 文件:
https://code.google.com/archive/p/json-simple/downloads
解压到项目文件夹中的库,然后简单引用它。