从 applet 获取 JSP 页面的值
我不知道如何在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
小程序可以构造一个包含用户数据的 URL 作为名称/值对1。然后,它可以使用 applet 上下文的 show document 方法2 来调用其他 JSP。
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.
AppletContext.showDocument(URL)
使用
标签可以参考use the
<jsp:plugin>
tag you can refer to the tutorial for details.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 .