實(shí)例如下:
1
2
3
4
5
6
7
|
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); } |
以上就是小編為大家?guī)淼膉ava 遍歷request中的所有表單數(shù)據(jù)的實(shí)例代碼的全部內(nèi)容了,希望對(duì)大家有所幫助,多多支持服務(wù)器之家~