码迷,mamicode.com
首页 > 其他好文 > 详细

自己用的各种工具类(不喜勿喷)

时间:2014-12-19 12:02:09      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   ar   io   color   os   sp   for   

1:List转Json

public static String list2JsonArray(List list) {
        StringBuffer str = new StringBuffer("[");
        if (list != null && list.size() > 0) {
            int len = list.size();
            Object map = null;

            for (int i = 0; i < len; i++) {
                map = list.get(i);
                if (i > 0) {
                    str.append(",");
                }
                str.append(JSONUtil.object2json(map));
            }
        }
        str.append("]");
        return str.toString();
    }

2:ajax向前端返回json字符串

//向前端返回json字符串
    public void outString(String json) {
        PrintWriter print = null;
        try {
            HttpServletResponse response;
            response = this.getResponse();
            response.setContentType("text/json;charset=UTF-8");
            response.setHeader("Cache-Control", "no-cache");
            response.setHeader("Pargma", "no-cache");
            response.setDateHeader("Expires", 0);
            print = this.getResponse().getWriter();
            print.write(json);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

先吃饭去了 其他的慢慢补充  嘿嘿

自己用的各种工具类(不喜勿喷)

标签:style   blog   http   ar   io   color   os   sp   for   

原文地址:http://www.cnblogs.com/dnxf/p/4173482.html

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