16

我是一个完全的java新手,我有这个问题。我尝试解码 Json,为了做到这一点,我想导入这些包:

import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;
import org.json.simple.parser.ParseException;

“无法解决导入”......这些包不再可用还是我必须做其他事情才能使它们工作?

提前谢谢。

4

6 回答 6

14

可能您的简单 json.jar 文件不在您的类路径中。

于 2012-10-31T09:51:58.097 回答
12

我在我的 Spring Integration 项目中遇到了同样的问题。我在 pom.xml 文件中添加了 JSON 依赖项。这个对我有用。

<dependency>
  <groupId>org.json</groupId>
  <artifactId>json</artifactId>
  <version>20090211</version>
</dependency>

可以在此处找到版本列表:https ://mvnrepository.com/artifact/org.json/json

于 2014-04-05T03:01:50.587 回答
9

尝试这个

<!-- 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>
于 2018-04-17T15:59:54.557 回答
3

jar 文件丢失。您可以下载 jar 文件并将其作为外部库添加到您的项目中。你可以从这里下载

http://www.findjar.com/jar/com/googlecode/json-simple/json-simple/1.1/json-simple-1.1.jar.html

于 2012-10-31T09:55:27.720 回答
2

尝试在 build.gradle 依赖项中导入它

compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1'
于 2017-08-17T11:33:21.997 回答
1

对于 vs 代码中的简单控制台程序,这对我有用:从以下位置下载 json-simple 文件: https ://code.google.com/archive/p/json-simple/downloads

解压到项目文件夹中的 lib,然后简单地引用它。

于 2021-07-07T22:29:50.700 回答