java 遍历request中的所有表单数据的实例代码
java 遍历request中的所有表单数据的实例代码
发布时间:2016-12-28 来源:查字典编辑
摘要:实例如下:Enumerationrnames=request.getParameterNames();for(Enumeratione=rn...

实例如下:

Enumeration rnames=request.getParameterNames(); for (Enumeration e = rnames ; e.hasMoreElements() ;) { String thisName=e.nextElement().toString(); String thisValue=request.getParameter(thisName); System.out.println(thisName+"-------"+thisValue); }

以上就是小编为大家带来的java 遍历request中的所有表单数据的实例代码的全部内容了,希望对大家有所帮助,多多支持查字典教程网~

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新Java学习
热门Java学习
编程开发子分类