如何在我的小程序中加载并显示远程 jar 小程序?

发布于 2024-08-19 10:03:05 字数 247 浏览 3 评论 0原文

我想将远程小程序加载到我自己的小程序中。

例如,假设我希望我的小程序在我的 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 技术交流群。

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

发布评论

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

评论(1

绝對不後悔。 2024-08-26 10:03:05

您可以使用签名的小程序访问本地文件系统并绕过同源策略。

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..).

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