如果页面有大量的表单元素,在springMVC中一般都是表单和pojo对象做相应的对应,或者直接通过request获得对象,但是还有另外一种得到表单元素的方法,具体代码如下:
// java.util.Enumeration<String> req是HttpServletRequest对象
Enumeration<String> paras = req.getParameterNames();
while (paras.hasMoreElements()) {
String s = (String) paras.nextElement();
//form表单元素中的name
String value = req.getParameter(s);
//name表单对应的value值
/**比如在form表单中有
<input type="text" name="dept" value="deptValue" />
s值为dept value值为deptValue
*/
}
原文地址:http://blog.csdn.net/zl544434558/article/details/45531171