gpt4 book ai didi

java - JSONValue 无法转换为 JSONObject

转载 作者:行者123 更新时间:2023-11-30 08:42:17 24 4
gpt4 key购买 nike

我是 Java 的新手,我正在尝试为我的 JSON 文件编写一个迭代器。但它一直告诉我“不兼容的类型:JSONValue 不能转换为 JSONObject”在 JSONObject authorNode = (JSONObject) authors.next();

import java.util.Iterator;
import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
import org.json.simple.JSONValue;
import mende.entity.Author;


public class JSONIteratorAuthor implements Iterator <Author> {

private Iterator<JSONValue> authors;

public JSONIteratorAuthor(JSONObject jsonObject){
this.authors = ((JSONArray) jsonObject.get("authors")).iterator();
}

@Override
public boolean hasNext() {
return this.authors.hasNext();
}

public Author next() {
if(this.hasNext()){
Author a = new Author();
JSONObject authorNode = (JSONObject) authors.next();
a.setFirstName((String) authorNode.get("first_name"));
a.setLastName((String) authorNode.get("last_name"));
return a;
}
else {
return null;
}
}
}

有人可以帮助我吗?

最佳答案

作者.next();返回一个 JSONValue 类型的对象

private Iterator<JSONValue> authors;

但是您正试图将其转换为不兼容的类型 (JSONObject)

JSONObject authorNode = (JSONObject) authors.next();

我猜你的 Iterator<JSONValue>应该改为 Iterator<JSONObject> .

关于java - JSONValue 无法转换为 JSONObject,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34618304/

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