org.json.simple无法解析

fiei3ece  于 2023-10-21  发布在  其他
关注(0)|答案(8)|浏览(142)

我是一个Java新手,我有这个问题。我尝试解码JSON,为了做到这一点,我想导入这些包:

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

“无法解析导入”...这些软件包是否不再可用,或者我是否必须做其他事情才能使它们工作?
提前感谢。

uurity8g

uurity8g1#

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

nhjlsmyf

nhjlsmyf2#

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

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

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

zpgglvta

zpgglvta3#

试试这个

<!-- 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>
nafvub8i

nafvub8i4#

jar文件丢失。您可以下载jar文件并将其作为外部库添加到项目中。你可以从以下网站下载
http://www.findjar.com/jar/com/googlecode/json-simple/json-simple/1.1/json-simple-1.1.jar.html

vfhzx4xs

vfhzx4xs5#

尝试将其导入到build.gradle依赖项中

compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1'
pgpifvop

pgpifvop6#

对于一个简单的控制台程序在vs代码,这对我来说是有效的:下载json-simple文件:https://code.google.com/archive/p/json-simple/downloads
解压缩到你的项目文件夹中的库,然后简单地引用它。

mhd8tkvw

mhd8tkvw7#

这对我很有效:https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple/1.1.1

<!-- 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>
disho6za

disho6za8#

或者在IntelliJ IDEA中,转到:
项目设置->库-> + ->从Maven. -> com.googlecode.json-simple:json-simple:1.1.1 -> OK
那么代码应该可以工作。

<dependency>
  <groupId>com.googlecode.json-simple</groupId>
  <artifactId>json-simple</artifactId>
  <version>1.1.1</version>
</dependency>

相关问题