【asp 论坛源码下载】【android 源码添加log】【积分返现源码】jqgrid源码

时间:2024-11-23 13:28:15 来源:微信h5农场游戏源码 分类:百科

1.在js中将Action中响应的源码asp 论坛源码下载List转换为json格式该如何做?

jqgrid源码

在js中将Action中响应的List转换为json格式该如何做?

       List li=UserDAO.list();

        JSONArray array = JSONArray.fromObject(li);

        JSONObject object=new JSONObject();

        try {

        object.accumulate("list", li);

        } catch (JSONException e) {

        // TODO Auto-generated catch block

        e.printStackTrace();

        }

        //array.add(object);

        response.getWriter().write(array.toString());