亲宝软件园·资讯

展开

java遍历request java 遍历request中的所有表单数据的实例代码

人气:0
想了解java 遍历request中的所有表单数据的实例代码的相关内容吗,在本文为您仔细讲解java遍历request的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:java遍历request,下面大家一起来学习吧。

实例如下:

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中的所有表单数据的实例代码的全部内容了,希望对大家有所帮助,多多支持~

加载全部内容

相关教程
猜你喜欢
用户评论