import net.sf.json.JSONArray;
public static String toJson(Object resultobj) {
if (resultobj != null) {
JSONArray obj = JSONArray.fromObject(resultobj);
return (obj.toString());
}
return "";
}
public void toJson(Object resultobj) throws Exception {
if (resultobj != null) {
// 返回json字符串
HttpServletResponse response = ServletActionContext.getResponse();
response.setContentType("text/html; charset=utf-8");
JSONArray obj = JSONArray.fromObject(resultobj); // 集合转为json
PrintWriter out = response.getWriter();
out.println(obj.toString());
out.flush();
out.close();
}
}
//调用
ArrayList<StRain> list2=getData.StPptnRToStRain();
// 返回json字符串
toJson( list2);
public class StRain {
//时间
String time;
//雨量
double val;
}
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
java json所需要的jar包, 并附使用实例 public static String toJson(Object resultobj) { if (resultobj != null) { JSONArray obj = JSONArray.fromObject(resultobj); return (obj.toString()); } return ""; }
资源推荐
资源详情
资源评论
收起资源包目录
jsonlib.rar (10个子文件)
jsonlib
commons-logging-1.0.4.jar 37KB
commons-beanutils-1.7.0.jar 184KB
commons-collections.jar 171KB
commons-httpclient-3.0.1.jar 273KB
ezmorph-1.0.3.jar 76KB
json-lib-2.2.3-jdk15.jar 145KB
json-lib-2.3-jdk13.jar 148KB
toJson.txt 915B
commons-lang-2.4.jar 256KB
commons-collections-3.2.jar 558KB
共 10 条
- 1
小白的2015
- 粉丝: 237
- 资源: 10
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 基于javaweb的网上拍卖系统,采用Spring + SpringMvc+Mysql + Hibernate+ JSP技术
- polygon-mumbai
- Chrome代理 switchyOmega
- GVC-全球价值链参与地位指数,基于ICIO表,(Wang等 2017a)计算方法
- 易语言ADS指纹浏览器管理工具
- 易语言奇易模块5.3.6
- cad定制家具平面图工具-(FG)门板覆盖柜体
- asp.net 原生js代码及HTML实现多文件分片上传功能(自定义上传文件大小、文件上传类型)
- whl@pip install pyaudio ERROR: Failed building wheel for pyaudio
- Constantsfd密钥和权限集合.kt
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功
- 1
- 2
- 3
- 4
- 5
- 6
前往页