开发者

How do I load and display a remote jar applet in my applet?

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?


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

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜