java applet 是否可以热链接?

发布于 2024-11-15 17:24:28 字数 285 浏览 2 评论 0原文

之前已添加类似的问题: 如何从另一个网站嵌入 Java Applet(无法链接他们的类文件和 jar)

然而,提出问题的人实际上不需要热链接。

我的小程序将无法在自己的环境之外的其他环境中运行。

iframe 是否是我最后的希望?

Similar question had been added earlier: How to embed a Java Applet from another website (can't link their class file and jar)

however someone who asked question didn't need hotlinking in fact.

My applet will not be able to run in other environment than own.

Whether iframes are my last hope?

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

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

发布评论

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

评论(1

許願樹丅啲祈禱 2024-11-22 17:24:28

从另一个网站托管小程序就像设置适当的codebase 属性一样简单。 EG 我网站上的属性小程序(查看 HTML 源代码以了解详细信息)可以在本地启动(或从另一个网站)使用此 HTML。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<title>
Property Probe - applet
</title>
<script type='text/javascript' src="http://www.java.com/js/deployJava.js">
</script>
<script type='text/javascript'>
var attributes = {
    code:'org.pscode.tool.property.PropertyProbe',
    codebase:'http://pscode.org/lib',
    archive:'propprobe.jar',
    id:'applet',
    scriptable:'true',
    width:'600',
    height:'300'
};
var version = '1.2';
var params;
</script>
</HEAD>
<BODY>
<script type='text/javascript'>
deployJava.runApplet( attributes, params, version );
</script>
</BODY>
</HTML>

如果小程序希望查找相对于文档库而不是代码库的(非类)资源,则会遇到问题。

Hosting an applet from another web site can be as easy as setting an appropriate codebase attribute. E.G. The properties applet at my site (view the HTML source for the gory details) can be launched locally (or from another site) using this HTML.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<title>
Property Probe - applet
</title>
<script type='text/javascript' src="http://www.java.com/js/deployJava.js">
</script>
<script type='text/javascript'>
var attributes = {
    code:'org.pscode.tool.property.PropertyProbe',
    codebase:'http://pscode.org/lib',
    archive:'propprobe.jar',
    id:'applet',
    scriptable:'true',
    width:'600',
    height:'300'
};
var version = '1.2';
var params;
</script>
</HEAD>
<BODY>
<script type='text/javascript'>
deployJava.runApplet( attributes, params, version );
</script>
</BODY>
</HTML>

It will run into problems if the applet expects to find (non class) resources relative to the document base, as opposed to the code base.

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