如何在JSP中仅单击一个按钮即可执行两个操作?

发布于 2024-11-01 10:00:21 字数 113 浏览 0 评论 0原文

我创建了一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

清旖 2024-11-08 10:00:21

只需将表单提交到 servlet 即可。

<form action="uploadServlet" method="post" enctype="multipart/form-data">

在 servlet 中,您可以自由地将一些 Java 代码挂接到特定的 HTTP 方法上。您只需放置处理上传文件的代码,设置要显示的消息,最后将请求转发到 JSP 以显示结果。例如,在 servlet 的 doPost() 方法中执行以下操作:

processUploadedFile(request);
request.setAttribute("message", "Some message you want to display to user");
request.getRequestDispatcher("/WEB-INF/uploadResult.jsp").forward(request, response);

最后在 /WEB-INF/uploadResult.jsp 文件中显示如下消息:

<p>Message: ${message}</p>

Just submit the form to a servlet.

<form action="uploadServlet" method="post" enctype="multipart/form-data">

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:

processUploadedFile(request);
request.setAttribute("message", "Some message you want to display to user");
request.getRequestDispatcher("/WEB-INF/uploadResult.jsp").forward(request, response);

And finally in /WEB-INF/uploadResult.jsp file display the message as follows:

<p>Message: ${message}</p>
剩一世无双 2024-11-08 10:00:21

您可以使用回发表单提交技术。

you can use post back form submit technique.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文