皮皮网

【slowfast源码】【什么源码最好用】【苍穹网络影视源码】jqgrid源码

来源:winxp+云盘源码 时间:2024-11-15 12:05:09

1.在js中将Action中响应的源码slowfast源码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());