先看看API里面是怎么说的吧
java.lang.String getParameter(String name) :Returns the value of a request parameter as aString
, or null
if the parameter does not exist.
意思是,返回一个String类型的请求参数的值,如果请求参数不存在的话,则返回null
java.lang.String[] getParameterValus(String name) :Returns an array of String
objects containing all of the values the given request parameter has, ornull
if the parameter does not exist.
意思是,返回一个String类型的数组,数组里面包含了这个请求参数的所有值,如果请求参数不存在,则返回null
所以在checkbox或者是select这类空间中,请求参数的值可能会有很多个,可以用getParameterValus(String name) 这个方法来获得所有值组成的一个数组。再遍历这个数组即可获得每一个参数。