Can someone explain to me why ServletRequest.getParameterMap() returns type
Map<String, String[]>
ServletRequest.getParameter() just returns type String
I'm don't understand why the map would ever map to more then one value. TIA.
|
feedback
|
|
It returns all parameter values for controls with the same name. For example:
or
Any checked/selected values will come in as:
It's also useful for multiple selections in tables:
in combination with
| |||||
feedback
|
"biff" now maps to | |||
|
feedback
|
|
If you have a multi-value control like a multi-selectable list or a set of buttons mapped to the same name multiple selections will map to an array. | |||
feedback
|
|
In the case with multi-value controls (checkbox, multi-select, etc), the | |||
|
feedback
|
|
The real function to get all parameter values is
| |||
|
feedback
|