如何检索我的servlet程序中多选列表中选择的所有值。我正在使用struts2 framework.I能够创建多选列表但无法在java程序中检索其值。请帮助。< / p>
这是我在jsp中的选择列表声明
<s:select id = "s4" label="Select the IDS to be bypassed:" name="ids" list=" {'IX','HX','LX','HD','LD','NH','LH','QL','QH','TM','SP','ALL','*'}" headerKey="0" headerValue="Select" property="selectedValues" multiple="true"/>
答案 0 :(得分:1)
您可以使用数组
private String[] ids;
//getter & setter
或者您可以使用列表
private List<String> ids;
//getter & setter