码迷,mamicode.com
首页 > 编程语言 > 详细

组合查询--表单对象转化为json数组

时间:2017-08-03 17:38:58      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:ons   bsp   object   har   sea   config   属性   void   数组   

baseAction中:

public void write2JsonArray(List<?> list, String[] excludes) throws IOException {

  // JsonConfig: 配置转换的json数据中不需要的属性
  JsonConfig jsonConfig = new JsonConfig();

  jsonConfig.setExcludes(excludes);

  // 将转化为json数组
  String json = JSONArray.fromObject(list, jsonConfig).toString();
  ServletActionContext.getResponse().setContentType("test/json;charset=UTF-8");
  ServletActionContext.getResponse().getWriter().print(json);

 }

 

------------------------------------------------------------

动作类中:

List<Area> list = areaService.findAll();

  String[] excludes = { "subareas" };

  this.write2JsonArray(list, excludes);

组合查询--表单对象转化为json数组

标签:ons   bsp   object   har   sea   config   属性   void   数组   

原文地址:http://www.cnblogs.com/xubing520/p/7280749.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!