"
import java.util.List;
public class PersonTest {
private String name;
private Game game;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Game getGame() {
return game;
}
public void setGame(Game game) {
this.game = game;
}
}
public class Game {
private String[] string;
public String[] getString() {
return string;
}
public void setString(String[] string) {
this.string = string;
}
}
public class MTest {
public static void main(String[] arg) throws IOException{
String json = "[{\"name\":\"Jack\",\"game\":{\"string\":[\"2\",\"3\"]}},{\"name\":\"Jack\",\"game\":{\"string\":[\"2\",\"3\"]}}]";
JSONArray jsonobject = JSONArray.fromObject(json);
List<PersonTest> list1 = (List<PersonTest>)JSONArray.toArray(jsonobject,PersonTest.class);
for(PersonTest u : list1){
System.out.println(u.getName());
}
}
}
为什么转换不了...报错了,哪里写的有错吗?
Exception in thread "main" java.lang.ClassCastException: [Lm.test.PersonTest; cannot be cast to java.util.List
at m.test.MTest.main(MTest.java:21)
" ![image.png](https://ucc.alicdn.com/pic/developer-ecology/bf544c421b62412f9e77f930ba00846a.png)
ArrayList<PersonTest> list1 = (ArrayList<PersonTest>)JSONArray.toList(jsonobject,new PersonTest(),new JsonConfig()); 试试,不知道你用的是哪个jar的json,上面代码用的net.sf.json.JSONArray
######对象里面还包含着对象,不确定json能不能转.但是我感觉jackson可以,不如,我们去看看hibernate用的什么转的?其实,json to object 是可以自己写方法转的
![image.png](https://ucc.alicdn.com/pic/developer-ecology/a50578c34678490ca4dbf0939313efdd.png)版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。