首页 > 代码库 > 打印后台访问请求参数

打印后台访问请求参数

Enumeration a = request.getParameterNames();
while (a.hasMoreElements()) {
String buf = a.nextElement().toString();
System.out.println(buf + ":" + request.getParameter(buf));
}
System.out.println(" ");


来自为知笔记(Wiz)


打印后台访问请求参数