9

我需要将 JSON 库导入 netbeans。

我怎样才能做到这一点?

我在互联网上搜索并找到了这篇文章。

根据这篇文章,我导入时

import org.json.simple.JSONArray;
import org.json.simple.JSONObject

那,它必须是工作。但不幸的是,它没有奏效。我得到一个错误:

Package doesnt exist

谢谢你的帮助。

4

5 回答 5

6

正如文章所说,您需要将 simple-json 库添加到您的项目中:

http://code.google.com/p/json-simple/

于 2012-12-10T14:07:52.470 回答
3

为此,我们必须添加json-20131018.jar 中可用的 Class org.json.JSONObject。我们需要下载这个 jar 并将这个 jar 添加到您的构建路径中。

在netbeans中右键单击项目列表中的“库”,然后单击添加jar/文件夹。

于 2016-06-03T07:50:10.087 回答
1

从这里下载 jar:https ://code.google.com/archive/p/json-simple/downloads 然后将其添加到 netbeans 中的“库”中。

添加了这个答案,因为其他答案没有提供上面的链接,这是最容易下载jar的。

于 2016-07-13T17:44:29.520 回答
0

尝试添加 json-20131018.jar。这解决了我的问题。 http://mvnrepository.com/artifact/org.json/json/20131018

于 2016-02-03T15:39:02.013 回答
0

或者,不要依赖使用旧导入的旧版本,而是使用带有新导入的新版本

import com.github.cliftonlabs.json_simple.*;

对于 Netbeans,您可以右键单击项目并进入库以确保将 jar 文件添加到类路径(而不是模块路径)中。按“+”按钮将其添加到该部分下,方法是使用带有构建 jar 和 javadoc jar 的创建库,或者更简单地说,只需将单个 jar 文件 (json-simple-3.1.1.jar) 直接添加到类路径。

After doing this, the jar file should show up in the 'Libraries' folder under the project.

于 2021-01-20T06:02:33.317 回答