gpt4 book ai didi

java.lang.ClassCastException : com. google.gson.internal.LinkedTreeMap 无法转换为 pojo.class

转载 作者:行者123 更新时间:2023-12-01 16:25:57 33 4
gpt4 key购买 nike

获取 java.lang.ClassCastException:在序列化泛型类型时,com.google.gson.internal.LinkedTreeMap 无法转换为 pojo.class。请提供帮助。

这是为 Json fileReader 类编写的代码。

public class ReadJsonFile<T>  {

private static final Object ReadJsonFile = null;
public static void main (String[] args)
{
ReadJsonFile read = new ReadJsonFile();
read.getjsondata("src/test/resource/testdataresource/addplacerequest.json", Addbook.class);
}
public List<T> getjsondata(String filepath, Class<T> typeofT)
{

//filepath= "src/test/resource/testdataresource/addplacerequest.json";
Gson gson = new Gson(); ;
BufferedReader bufferReader = null;
try {

bufferReader = new BufferedReader(new FileReader(filepath));


*/
Type ListType = new TypeToken<ArrayList<T>>(){}.getType();
//gson.toJson(ReadJsonFile,ListType);
List<T> arraylist = gson.fromJson(bufferReader, ListType);
Iterator iter = arraylist.iterator();
while (iter.hasNext()) {
System.out.println(iter.next());
}
return(arraylist);

}catch(FileNotFoundException e) {
throw new RuntimeException("Json file not found at path : " + filepath);
}finally {
try { if(bufferReader != null) bufferReader.close();}
catch (IOException ignore) {}
}
}


}

我使用过的 POJO 类是:

public class Addbook {


public String name;
public String isbn;
public String aisle;
public String author;


public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getIsbn() {
return isbn;
}
public void setIsbn(String isbn) {
this.isbn = isbn;
}
public String getAisle() {
return aisle;
}
public void setAisle(String aisle) {
this.aisle = aisle;
}
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}

@Override
public String toString() {
return "Addbook [name="+ name + ",isbn="+ isbn +",aisle="+ aisle +",authur="+ author +"]";
}

}

文件和Pojo阅读器类

public class TestDataBuild {


private static String isbn;

public static List<Addbook> addbook()

{
ReadJsonFile readJson=new ReadJsonFile();
List<Addbook> addbook = readJson.getjsondata("src/test/resource/testdataresource/addplacerequest.json", Addbook.class);
//System.out.println(addbook.getClass().getName()); // variable class name
addbook.get(0).setName("name");
addbook.get(1).setAuthor("author");//listOfClients.get(clientIndex).setFirstName(newFirstName);
addbook.get(2).setIsbn(isbn);
addbook.get(3).setAisle("aisle");

return addbook;



}

}

使用的 Json 文件:

[
{
"name": "The GoodDay",
"isbn": 67086,
"aisle": "GoodDay",
"author": "fghwsdf"
},
{
"name": "The BadDay",
"isbn": 56897,
"aisle": "BadDay",
"author": "dhdjfjj"
}
]

我应该如何解决这个错误?

最佳答案

而不是

  Type ListType = new TypeToken<ArrayList<T>>(){}.getType();

使用

  Type ListType =TypeToken.getParameterized(ArrayList.class, typeofT).getType();

从 Gson 2.8.0 开始支持

此问题已被提出并得到解答 Gson TypeToken with dynamic ArrayList item type

关于java.lang.ClassCastException : com. google.gson.internal.LinkedTreeMap 无法转换为 pojo.class,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62147697/

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