上传者: lingyun304
|
上传时间: 2022-03-16 22:47:23
|
文件大小: 710KB
|
文件类型: -
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字符串写文本文件
文本文件 按行读取处理