JSON进阶(一)
2010-09-14 13:44:19 来源:WEB开发网五、 Javabeans ---json字符串
public class JSONBean
{
private int row ;
private int col ;
private String value ;
public int getRow() {
return row;
}
public void setRow(int row) {
this.row = row;
}
public int getCol() {
return col;
}
public void setCol(int col) {
this.col = col;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}
java代码:
1 List<JSONBean> l=new ArrayList<JSONBean>();
2 JSONBean jb=new JSONBean();
3 jb.setCol(1);
4 jb.setRow(1);
5 jb.setValue("huxl");
6
7 JSONBean jb2=new JSONBean();
8 jb2.setCol(2);
9 jb2.setRow(2);
10 jb2.setValue("ryp");
11
12 l.add(jb);
13 l.add(jb2);
14
15 JSONArray ja = JSONArray.fromObject(l);
16 System.out.println( ja.toString() );
17
以上就是JSON与java的数据交互,有不全的或是不对的地方请高手指教!
赞助商链接