欢迎来到皮皮网网首页

【苗木程序源码】【广州分销小程序商城源码】【安卓源码排行榜】jqgrid 源码解析

来源:找房源码 时间:2024-11-24 07:57:27

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());