读书人

struts2文件上传有关问题

发布时间: 2013-03-26 09:54:34 作者: rapoo

struts2文件上传问题
大家好,有个很棘手的问题希望大家解决一下:谢谢
struts2上传文件:jsp页面为:
<form id="theForm" name="theForm" method="post" enctype="multipart/form-data">
<td>
<input name="doc" type="FILE" class="input-text" style="width: 500px;" value="">
</td>
</form>
action中为:
private File doc;//上传文件
get set 方法都有

为什么action中得到的文件为null,其他的也没地方设置了呀,,,这么晚了,在的朋友希望大家解决下。。。谢谢!!!



[解决办法]
这个必须得加
<action name="upFile" class="webAction" method="upFile">
<interceptor-ref name="params"/>
<interceptor-ref name="fileUploadStack"/>
<result>ok.jsp</result>
<result name="error">/error.jsp</result>
</action>
form中使用
<form id="theForm" name="theForm" action="upFile.do" method="post" enctype="multipart/form-data">

读书人网 >J2EE开发

热点推荐