当前 HTML 页面中的 JSP 响应

发布于 2024-11-08 15:08:34 字数 118 浏览 0 评论 0原文

我想将文件上传器添加到我的 JSP 页面。在 JSP 内部,它返回一个包含文本(结果)的新页面。有没有办法打印当前页面中的文本,我想在

中打印它?

I want to add a file uploader to my JSP page. Inside the JSP, it returns a new page containing text (result). Is there a way to print the text in the current page I want to print that in a <div>?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

○愚か者の日 2024-11-15 15:08:34

下面是一个帮助您入门的示例: http://www.java-tips.org/java-ee-tips/javaserver-pages/uploading-file-using-jsp.html

对于其余部分,我无法弄清楚你是什​​么问。


FWIW,在 JSP 中做这种事情不是一个好主意。最好将业务逻辑放在 servlet 中并仅使用 JSP 来呈现输出。

@BalusC 的回答概述了如何使用 servlet 和 JSP 以正确的方式实现这一点。

Here is an example to get you started: http://www.java-tips.org/java-ee-tips/javaserver-pages/uploading-file-using-jsp.html

For the rest of it, I can't figure out what you are asking.


FWIW, it is not a great idea to do this kind of thing in JSP. It is better to put your business logic in a servlet and use JSPs just for rendering the output.

@BalusC's answer sketches how you would implement this the right way ... using a servlet and a JSP.

寒尘 2024-11-15 15:08:34

只需提交到 servlet,该 servlet 将结果转发回同一个 JSP。

例如,这个 /upload.jsp

<form action="upload" method="post" enctype="multipart/form-data">
  <input type="file" name="file" />
  <input type="submit" />
</form>
<div>${result}</div>

带有 servlet ,映射到 /upload 并在 doPost() 方法中执行以下操作:

// (process file upload)
// ...
request.setAttribute("result", "File upload finished!");
request.getRequestDispatcher("/upload.jsp").forward(request, response);

这样,消息 “文件上传完成!” 将由 ${ 获取result} 在 JSP 中并按原样打印。

另请参阅:

Just submit to a servlet which forwards back to the same JSP with the result.

E.g. this /upload.jsp

<form action="upload" method="post" enctype="multipart/form-data">
  <input type="file" name="file" />
  <input type="submit" />
</form>
<div>${result}</div>

with a servlet which is mapped on an URL pattern of /upload and does the following in doPost() method:

// (process file upload)
// ...
request.setAttribute("result", "File upload finished!");
request.getRequestDispatcher("/upload.jsp").forward(request, response);

This way the message "File upload finished!" will be available by ${result} in the JSP and printed as such.

See also:

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