jsonArray使用时报错

前端之家收集整理的这篇文章主要介绍了jsonArray使用时报错前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

JSON: Property 'xxx' has no getter method in class 'class xxx'

在做数据转换为JSON格式时:

[java] view plain copy

  1. importnet.sf.json.JSONArray;
  2. classT{
  3. privateStringname;
  4. privateintage;
  5. publicStringgetName(){
  6. returnname;
  7. }
  8. publicvoidsetName(Stringname){
  9. this.name=name;
  10. }
  11. publicintgetAge(){
  12. returnage;
  13. }
  14. publicvoidsetAge(intage){
  15. this.age=age;
  16. }
  17. }
  18. publicclassJSONTest2{
  19. publicstaticvoidmain(String[]args){
  20. Tt=newT();
  21. t.setName("zhangsan");
  22. t.setAge(20);
  23. JSONArrayjson=JSONArray.fromObject(t);
  24. System.out.println(json);
  25. //System.out.println(t.getName());
  26. //System.out.println(t.getAge());
  27. }
  28. }


出现了如下错误

  1. thread"main"net.sf.json.JSONException:java.lang.NoSuchMethodException:Property'age'hasnogettermethodinclass'classT'


原因是 声明bean为public class 必须是public

原文链接:https://www.f2er.com/json/289270.html

猜你在找的Json相关文章