通过程序遍历http请求的所有参数放到hashmap中,用的时候方便了。![]()
如果参数值有中文,那么需要在程序中添加filter转码,或者在下面程序里,对paramValue转码
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
Map map = new HashMap();
Enumeration paramNames = request.getParameterNames();
while (paramNames.hasMoreElements()) {
String paramName = (String) paramNames.nextElement();
String[] paramValues = request.getParameterValues(paramName);
if (paramValues.length == 1) {
String paramValue = paramValues[0];
if (paramValue.length() != 0) {
System.out.println("参数:" + paramName + "=" + paramValue);
map.put(paramName, paramValue);
}
}
}
}
本文介绍了一种使用Java处理HTTP请求参数的方法,通过遍历所有参数并存入HashMap中以方便后续使用。对于含有中文的参数值,文章还特别强调了进行转码处理的重要性。
8753

被折叠的 条评论
为什么被折叠?



