struts2 上传文件相关

来源:互联网 发布:在淘宝买薄荷种子 编辑:程序博客网 时间:2024/06/05 08:54

类中 

  1. private File filedata; // 与jsp表单中的名称对应  
  2.     private String filedataFileName; // FileName为固定格式  
  3.     private String filedataContentType; // ContentType为固定格式  

jsp中

<form id="formID" action="${ctx}/system/contractDocument!add.action" method="post"  class="validation" enctype="multipart/form-data">
<s:token></s:token>
<s:hidden name="contractDocument.id"></s:hidden>
<table class="ntable" width="900px">
<tr class="tr0">
<td class="rtd" width="80">文件</td>
<td width="370">
<s:file name="filedata"></s:file>
</td>

<td class="rtd" width="80">备注</td>
<td><s:textfield name="contractDocument.bz"></s:textfield></td>

</tr>


</table>
<input type="submit" id="save" value="保存" class="btn1"/>
</form>


需要注意

1.enctype="multipart/form-data" 不能忘记填写

2.页面中<s:file name="filedata"></s:file> 中name名称必须与类中的一致

0 0