json的解析:一个java类,比如hello.java中包含list<hello>的问题。

publicclassHello{privateStringfather;privateStringmather;privateList<Hello>helloList;... public class Hello{
private String father;
private String mather;

private List<Hello> helloList;
}
如何解析包含这种类的json字符串,用gson、或者其他什么的?
展开
 我来答
百度网友090def6
2014-04-21 · TA获得超过2211个赞
知道小有建树答主
回答量:558
采纳率:100%
帮助的人:709万
展开全部
import java.util.ArrayList;
import java.util.List;
public class Hello {
 private String father;
 private String mather;
 private List<Hello> helloList;
 
 public Hello() {
 }
 
 public Hello(String father, String mather) {
  this.father = father;
  this.mather = mather;
 }
 public String toJson() {
  StringBuilder sb = new StringBuilder();
  sb.append("{");
  sb.append("father:").append("\"").append(father == null ? "" : father).append("\"");
  sb.append(",mather:").append("\"").append(mather == null ? "" : mather).append("\"");
  sb.append(",helloList:[");
  if (helloList != null) {
   for (int i = 0; i < helloList.size(); i++) {
    if (i > 0) {
     sb.append(".");
    }
    sb.append(helloList.get(i).toJson());
   }
  }
  sb.append("]}");
  return sb.toString();
 }
 public static void main(String[] args) {
  Hello hello = new Hello();
  hello.father = "张三";
  hello.mather = "李四";
  hello.helloList = new ArrayList<Hello>();
  hello.helloList.add(new Hello("f1", "m1"));
  hello.helloList.add(new Hello("f2", "m2"));
  System.out.println(hello.toJson());
 }
}

增加了构造方法,方便测试

给你增加了一个toJson的方法,转换成json串

测试main方法测试

更多追问追答
追问
亲~  我要把这个json串解析出来,不是把这个类变成json串,你理解反了
追答
哥,我错了,这个最好使用第三方jar,如json-lib
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式