分页 ACTION3

来源:互联网 发布:征信大数据是什么意思 编辑:程序博客网 时间:2024/05/17 06:16
 

   //设置分页的相关信息
            String pageSize = request.getParameter("pageSize");
            String currentPage  = request.getParameter("pageNumber");
            json = paging(pageSize, currentPage, json);

            HttpSession session = request.getSession();
            // 获取语种
            String nls = (String) session.getAttribute(SupportConstants.CFG_NLS);
            if (null != nls && "".equals( nls.trim()))
            {
                nls = "en";
            }
            json.put("nls", nls);
            IPoApplyWsProxy proxy = new IPoApplyWsProxy();
            String result = proxy.getCheckerConfigList(json.toString());
            Map selectedCheckerMap =
                (Map) session.getAttribute("selectedCheckerMap");

原创粉丝点击