获取 - org.json 包不存在 - 无法使用 JSONArray / JSONObject

问题描述 投票:0回答:2

我正在尝试使用 IntelliJ 中的 Maven 用 Java 编写一个程序,该程序使用 HttpURLConnection 调用 API 并使用 JSONArray 和 JSONObject 解析响应。我尝试导入 org.json JAR 文件,并且更新了我的 pom.xml 以将其作为依赖项包含在内,但我仍然收到以下错误。

Test.java:1: error: package org.json does not exist
import org.json.JSONArray;

pom.xml:

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

我还尝试将下载的 JAR 文件添加到项目结构 > 模块 > 依赖项,但没有成功。还有什么我可以忽略的吗?

java json maven intellij-idea org.json
2个回答
2
投票

您的依赖项和导入看起来是正确的。重新加载所有 Maven 依赖项应该可以解决该问题。查看这篇文章:强制 Intellij IDEA 重新读取所有 Maven 依赖项


0
投票

我遇到了同样的问题,添加了

org.json
依赖并重新加载了maven,但Intellij仍然无法识别它。 我尝试在
module-info.java
中编写以下代码,然后 Intellij 识别了它:

requires org.json;

© www.soinside.com 2019 - 2024. All rights reserved.