反序列化方式:
1、
Person person=JSON.parseObject("",new TypeReference<Person>(){});
2、
Person person=JSON.parseObject("",Person.class);
JSONObject继承了JSON,使用哪个对象都可以的
反序列化方式:
1、
Person person=JSON.parseObject("",new TypeReference<Person>(){});
2、
Person person=JSON.parseObject("",Person.class);
JSONObject继承了JSON,使用哪个对象都可以的