J2EE学习笔记
我们的失落……
BlogJava
首页
新随笔
新文章
联系
聚合
管理
posts - 13,comments - 1,trackbacks - 0
<
2008年3月
>
日
一
二
三
四
五
六
24
25
26
27
28
29
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
常用链接
我的随笔
我的评论
我的参与
最新评论
留言簿
给我留言
查看公开留言
查看私人留言
随笔分类
ajax(1)
hibernate(2)
java(4)
javascript(2)
jQuery(1)
other(1)
servlet/jsp
spring(2)
struts(1)
原创(1)
转载(13)
随笔档案
2010年6月 (1)
2010年5月 (1)
2010年4月 (1)
2010年3月 (2)
2010年2月 (1)
2010年1月 (1)
2009年11月 (1)
2009年9月 (1)
2009年8月 (2)
2009年5月 (1)
2008年10月 (1)
2008年3月 (1)
收藏夹
Struts(5)
搜索
最新评论
1. re: [转]JAVA语言的反射(Reflection)和内省(Introspector)
哈哈,林林,你很行嘛~:)
--leeo
阅读排行榜
1. [转]SecureCRT中文字体解决方案(6029)
2. [转]spring jdbcTemplate使用(2011)
3. [转]用 join 或 CountDownLatch 让主线程等待所有子线程完成(1198)
4. [转]java.math.BigDecimal的用法(1196)
5. [转]Hibernate映射配置文件中id标签的unsaved-value属性详解(938)
评论排行榜
1. [转]JAVA语言的反射(Reflection)和内省(Introspector)(1)
2. [转]用 join 或 CountDownLatch 让主线程等待所有子线程完成(0)
3. [转]jQuery基础---filter()和find()(0)
4. [转]SecureCRT中文字体解决方案(0)
5. [转]Hibernate saveorUpdate与unsaved-value,save,update,delete总结(0)
[转]Struts 中 Multibox 的用法
在
ActionForm
中定义一个数组
String[] selectedOptions
用于存放复选框被选中的值,
数组
LabelValueBean[] possibleOptions
用于显示所有的复选框的值。
import
org.apache.struts.action.ActionForm;
import
org.apache.struts.util.LabelValueBean;
public
class
MyActionForm
extends
ActionForm
{
private
LabelValueBean[] possibleOptions;
private
String[] selectedOptions;
public
MyActionForm()
{
//
Initialise the LabelValueBeans in the possibleOptions array.
LabelValueBean[] lvBeans
=
new
LabelValueBean[
4
];
lvBeans[
0
]
=
new
LabelValueBean(
"
Alpha
"
,
"
A
"
);
lvBeans[
1
]
=
new
LabelValueBean(
"
Beta
"
,
"
B
"
);
lvBeans[
2
]
=
new
LabelValueBean(
"
Charlie
"
,
"
C
"
);
lvBeans[
3
]
=
new
LabelValueBean(
"
Delta
"
,
"
D
"
);
this
.possibleOptions
=
lvBeans;
}
public
LabelValueBean[] getPossibleOptions()
{
return
possibleOptions;
}
public
String[] getSelectedOptions()
{
return
selectedOptions;
}
public
void
setSelectedOptions(String[] selectedOptions)
{
this
.selectedOptions
=
selectedOptions;
}
}
在
JSP
中使用以下代码:
<
logic:iterate
name
="myActionForm"
id
="item"
property
="possibleOptions"
>
<
html:multibox
property
="selectedOptions"
>
<
bean:write
name
="item"
property
="value"
/>
</
html:multibox
>
<
bean:write
name
="item"
property
="label"
/><
br
/>
</
logic:iterate
>
posted on 2008-03-11 22:50
J2EE学习笔记
阅读(285)
评论(0)
编辑
收藏
所属分类:
struts
、
转载
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
知识库
C++博客
博问
管理