如何在JSP中仅单击一个按钮即可执行两个操作?
我创建了一个 JSP 页面,其中包含一个用于上传文件的浏览按钮和一个提交按钮。我想在用户单击提交按钮时自动回复,并且上传的文件必须同时保存。换句话说,我想通过单击一个按钮同时执行两个操作。我怎样才能实现这个目标?
I have created a JSP page with one browse button to upload a file and a submit button. I want to give auto-reply when user click on the submit button and the uploaded file must get saved at the same moment. In other words, I want to perform two actions at the same time on only one button click. How can I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需将表单提交到 servlet 即可。
在 servlet 中,您可以自由地将一些 Java 代码挂接到特定的 HTTP 方法上。您只需放置处理上传文件的代码,设置要显示的消息,最后将请求转发到 JSP 以显示结果。例如,在 servlet 的
doPost()
方法中执行以下操作:最后在
/WEB-INF/uploadResult.jsp
文件中显示如下消息:Just submit the form to a servlet.
In a servlet you've the freedom to hook some Java code on specific HTTP methods. You can just put code which processes the uploaded file, sets the message you want to display and finally forward the request to JSP to display the result. E.g. the following in the servlet's
doPost()
method:And finally in
/WEB-INF/uploadResult.jsp
file display the message as follows:您可以使用回发表单提交技术。
you can use post back form submit technique.