gpt4 book ai didi

java - 无法解析符号 JSONParser

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:36:02 33 4
gpt4 key购买 nike

所以我导入了 import org.json.* 并且它似乎无法识别 JSONParser。

String filePath = "C://CN//jokes.json";
try {
FileReader reader = new FileReader(filePath);
JSONParser jsonParser = new JSONParser();
JSONObject jsonObject = (JSONObject) jsonParser.parse(reader);
System.out.println(jsonObject);
}catch (Exception e) {
System.out.println(e);
}
}

jokes.json 与 http://api.icndb.com/jokes 具有相同的信息我希望能够从该站点获取数据,但为了测试我已经创建了一个文件。这是我第一次使用 Json,所以我有点无能为力。我已经更新了 jdk 和 jre,但我仍然有同样的问题。这是显示其外观的屏幕截图: Screenshot我也看过类似的帖子link ,但这与我的问题不同。

如果您查看屏幕截图,import org.json.* 似乎没有 JSONParser 类。我也尝试添加 import org.json.simple.parser.JSONParser; 但它无法识别。因为“简单”不存在

最佳答案

对于 Android Studio,只需将其添加到 build.gradle 依赖项中:

compile 'com.googlecode.json-simple:json-simple:1.1'

有关其他 IDE 和其他选项,请参见此处: http://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple/1.1

关于java - 无法解析符号 JSONParser,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36107111/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com