Enumeration enu = this.req.getParameterNames();
while (enu.hasMoreElements())
{
String paramName = (String) enu.nextElement();    //得到参数名
String paramValue = request.getParameter(paramName);  //得到参数值 }问题来了,请问 我用 getParameterNames 这个方法得到的参数名 如何判断这个参数是 get过来的 还是 post过来的?就是如何区分 获得的这个参数提交的方式是GET还是POST