Java applet 和 Web 浏览器
我正在做一个关于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许一个简单的答案就足够了,并且不需要 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'