使用上传文件 在Struts2中
我正在开发struts2应用程序。 我的 jsp 中有以下内容(例如 main.jsp) -
<s:file name="sampleDocument"/>
<s:submit action="uploadSample" value="Upload" />
请参阅此处我的 struts.xml 如何处理操作 -
<action name=" uploadSample " class=" UploadFiles">
<result name="success"> /main.jsp</result>
<result name="input"> /error.jsp</result>
</action>
一切都运行良好。 正在按要求上传文件。 但正如您所看到的,我在 SUCCESS 上调用相同的 jsp 页面(即 main.jsp)。 它即将到来,但
文本框为空。 我的意思是我在上传之前没有浏览过文件名。 有谁知道如何得到这个吗?
I am working on struts2 application. I have following in my jsp (say main.jsp) –
<s:file name="sampleDocument"/>
<s:submit action="uploadSample" value="Upload" />
See here how my struts.xml handling the action -
<action name=" uploadSample " class=" UploadFiles">
<result name="success"> /main.jsp</result>
<result name="input"> /error.jsp</result>
</action>
Its all running well. As required file is uploading. But as you have seen I am calling same jsp page (i.e main.jsp) on SUCCESS. Its coming but <s:file>
textbox in empty. I mean its there is no file name that I have browse before uploading. Can anyone know how to get this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您的操作中需要有反映 JSP 中参数名称的属性。 请参阅此文档了解以下内容的说明要寻找哪些属性。
You need properties on your action that reflect the names of the parameters in your JSP. Have a look at this documentation for an explanation of which properties to look for.
您应该为 fileName 定义 getter 和 setter 函数。 这将确保从操作返回后该值会填充到视图中。
you should define getter and setter functions for fileName. This will ensure that the value is populated in the view once it returns from the action.
出于安全原因,默认情况下会清除
元素的值。
请参阅如何为文件输入设置值在 HTML 中?
The value of the
<input type="file"/>
element is cleared by default for security reasons.See How to set a value to a file input in HTML?