如何在我的小程序中加载并显示远程 jar 小程序?
我想将远程小程序加载到我自己的小程序中。
例如,假设我希望我的小程序在我的 java 小程序 中下载并显示来自此站点的游戏:
http://www.java4k.com/index.php?action=home
我该怎么做?
I would like to load remote applets into my own applet.
For example, lets say I want my applet to download and display a game from this site within my java applet:
http://www.java4k.com/index.php?action=home
How do I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用签名的小程序访问本地文件系统并绕过同源策略。
LWJGL java 库开发了一个“applet 加载器”,您可以修改和重用。
http://lwjgl.org/wiki/doku.php/lwjgl/tutorials/小程序
以下是野外使用的示例: http:// www.paulscode.com/demos/SoundSystem/09AUG2009/Helicopter.html
基本上,applet_loader下载一堆文件,将它们写入磁盘,将它们添加到类路径,实例化目标applet,然后代理Java方法调用它到目标小程序(Applet.start、Applet.stop 等)。
You can use a signed applet to access the local file system and bypass the same-origin policy.
The LWJGL java library has developed an "applet loader" you can modify and reuse.
http://lwjgl.org/wiki/doku.php/lwjgl/tutorials/applet
Here is an example use in the wild: http://www.paulscode.com/demos/SoundSystem/09AUG2009/Helicopter.html
Basically, the applet_loader downloads a bunch of file, write them on the disk, add them to the classpath, instantiate the target applet, and then proxies Java methods call on it to the target applet (Applet.start, Applet.stop, etc..).