jsp 参数提取

         Enumeration param = request.getParameterNames();

        while (param.hasMoreElements())
        {
            name = param.nextElement().toString();
            properties.setProperty(name, request.getParameter(name).toString());
        }

原文地址:https://www.cnblogs.com/kevinge/p/1401483.html