【好车主源码】【充值记账源码】【unity源码管理】jqgrid 源码解析

时间:2025-01-01 11:57:03 来源:gprs ip 源码 分类:休闲

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