18

来源:互联网 发布:网络用语的意思? 编辑:程序博客网 时间:2024/04/29 07:42
  /**
     * <进行二级审核人增加>
     * @param mapping
     * @param form
     * @param request
     * @param response
     * @return
     * @throws Exception Exception
     *
     * @return ActionForward [返回类型说明]
     * @exception throws [违例类型] [违例说明]
     * @see [类、类#方法、类#成员]
     */
    public ActionForward addChecker(ActionMapping mapping,
         ActionForm form, HttpServletRequest request,
         HttpServletResponse response) throws Exception
        {
      response.setContentType("text/json;charset=UTF-8");
            PrintWriter out = response.getWriter();
            //得到session
            HttpSession session = request.getSession();
            // 得到语种
            String nls = (String) session.getAttribute(SupportConstants.CFG_NLS);
           
            String result = "";
    
原创粉丝点击