从 applet 获取 JSP 页面的值

发布于 2024-12-08 22:01:32 字数 88 浏览 0 评论 0原文

我不知道如何在JSP 中获取applet 的值。值由用户设置(在小程序中)。我想在一些不同的 JSP 上显示这个值。

有人可以对此提供一些指导吗?

I don't know how to get value of applet at JSP. A value is set by user (in the applet). I want to display this value on some different JSP.

Can anybody give some guidance on this?

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

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

发布评论

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

评论(3

若能看破又如何 2024-12-15 22:01:32

小程序可以构造一个包含用户数据的 URL 作为名称/值对1。然后,它可以使用 applet 上下文的 show document 方法2 来调用其他 JSP。

  1. http://our.com/answer.jsp?name1=value1&name2=value2
  2. AppletContext.showDocument(URL)

An applet can construct an URL containing the user data as a name/value pair1. It can then use the show document method2 of the applet context to call the other JSP.

  1. http://our.com/answer.jsp?name1=value1&name2=value2
  2. AppletContext.showDocument(URL)
孤单情人 2024-12-15 22:01:32

使用标签可以参考

use the <jsp:plugin> tag you can refer to the tutorial for details.

塔塔猫 2024-12-15 22:01:32

JSP 是服务器端的东西,而 applet 在浏览器中运行 那么为什么以及它们应该如何通信呢?
如果您需要从小程序读取一些数据并将其插入页面,只需 make该小程序可编写脚本并调用其方法

JSP is a server-side thing while applet runs in browser so why and how should these communicate ?
If you need to read some data from an applet and insert them to a page, just make the applet scriptable and call its method .

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