- 浏览: 52768 次
- 性别:
- 来自: 吉林
最新评论
文章列表
<s:bean name="org.apache.struts2.util.Counter" id="counter">
<s:param name="first" value="1" />
<s:param name="last" value="10" />
<s:iterator>
counter:<s:property value="curent-1"/>
&l ...
- 2010-08-13 16:51
- 浏览 832
- 评论(0)
在action中可以直接使用file数组即可,fileFileName 自动保存文件名,fileContentType
或者使用list
页面上使用<s:file name="file" />
<s:file name="file" />
这样即可上传多个文件。保存文件的方法
try{
FileInputStream fis = new FileInputStream(file);
bis=new BufferedInputStream(fis);
FileOutputSteam fos=new FileOutput ...
- 2010-08-13 13:35
- 浏览 674
- 评论(0)
<s:checkbox name="check" label="Check" fieldValue="true"></s:checkbox>
<s:checkboxlist list="#{'1':'abc','2':'efg','3':'sfdsf'}" value="#{'2','3'}" name="checkList3"></s:checkboxlist>
<s:checkboxlist list="# ...
- 2010-08-13 10:49
- 浏览 1682
- 评论(0)
Struts2中if Tag得注意的问题
- 博客分类:
- Struts2
<s:if test="%{model2.userAwardses != null && model2.userAwardses.size() > 0}">
</s:if>
这样一个if没有什么问题,那你说下边的有问题吗?
<s:if test="%{model2.userAwardses != null && model2.userAwardses.size() > 0}
">
</s:if>
下边这个仅仅是多了一个空格就不对了。值得注意,调试好 ...
- 2010-08-10 19:47
- 浏览 779
- 评论(0)