Java applet 和 Web 浏览器

发布于 2024-08-24 16:56:55 字数 95 浏览 3 评论 0原文

我正在做一个关于 java applet 如何与 web 浏览器一起工作的主项目。任何人都可以给我详细信息或任何有用的链接。web 浏览器如何与 java applet 交互。

i am doing a master project on how java applet works with web browsers.Can anyone give me details or any link that can be useful.How the web browser interacts with the java applet.

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

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

发布评论

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

评论(2

白况 2024-08-31 16:56:55
  1. 下载 Mozilla 的源代码(例如 Firefox)
  2. 阅读集成 JRE for applet 的代码。
  3. 出现具体问题时提出更多问题。
  1. Download the source of Mozilla (Firefox, e.g.)
  2. Read the code that integrates the JRE for applets.
  3. Ask more questions when specific issues arise.
浮生面具三千个 2024-08-31 16:56:55

也许一个简单的答案就足够了,并且不需要 Mozilla 进行逆向工程。
直到最近,小程序还没有与浏览器进行太多交互。浏览器仅向小应用程序发送“开始”、“停止”和“调整大小”事件,并且小应用程序可以命令浏览器打开新网页。使用 Java 6 update 10,可以从 JavaScript 调用 Applet 函数,也可以从 Applet 调用 JavaScript,只要它们位于同一页面上。
浏览器创建一个“沙箱”来运行小程序。沙箱限制了小程序的访问权限(例如小程序只能连接到Web服务器上的TCP端口,不能直接访问客户端文件系统上的文件等)。除了这些限制之外,小程序就像在客户端上运行的自主应用程序。
您可以在“http://java.sun.com/applets/”找到有关小程序的信息和 'http://java.sun.com/docs/ books/tutorial/deployment/applet/index.html'

Maybe a simple answer will be enough and it won't require reverse-engineering Mozilla.
Until recently, applets did not interact much with the browser. The browser sent only 'start', 'stop' and 'resize' events to the applet and the applet could order the browser to open new web pages. With the Java 6 update 10, there is a possibility to call Applet functions from JavaScript and to call JavaScript from an Applet, as long as they are on the same page.
The browser creates a 'sandbox' to run the applet. The sandbox limits the access rights of the applet (e.g. applet can connect to TCP ports only on the web server, cannot access files directly on the client file system, etc.). Besides these limitations, an applet is like an autonomous application running on the client box.
You can find info on applets at 'http://java.sun.com/applets/' and 'http://java.sun.com/docs/books/tutorial/deployment/applet/index.html'

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