打印后台访问请求参数
Posted Sam168666
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了打印后台访问请求参数相关的知识,希望对你有一定的参考价值。
Enumeration a = request.getParameterNames();
while (a.hasMoreElements()) {
String buf = a.nextElement().toString();
System.out.println(buf + ":" + request.getParameter(buf));
}
System.out.println(" ");
以上是关于打印后台访问请求参数的主要内容,如果未能解决你的问题,请参考以下文章