方法一:
Jsp
中:
<html:select property="resultEx" >
<html:optionsCollection name="requestNums"/>
</html:select>
Bean
中:
List<LabelValueBean> nums=
new
ArrayList<LabelValueBean>();
for
(Short i=1;i<=29;i++){
nums.add(
new
LabelValueBean(SysUtil.trimBall(i,
""
),i+
""
));
}
this
.
req
.setAttribute(
"requestNums"
, nums);