json对象与javabean相互转化
JSONObject jsonObj=JSONObject.fromObject(s);//将字符串转化为json对象
//写数据库处理
ObjBean bean=(ObjBean)JSONObject.toBean(jsonObj,ObjBean.class);
ObjBean bean=new ObjBean();
JSONObject jsonObj=JSONObject.fromObject(bean);
json字符串写文本文件
文本文件 按行读取处理
1