发布小程序时出现问题

发布于 2024-10-07 14:53:32 字数 312 浏览 2 评论 0原文

我正在尝试在网络上发布该小程序。我知道 标记的语法,并且我正在使用的按钮的图标与所有类位于同一文件夹中。我不知道出了什么问题。这是代码:

<applet code="Bomb.class" codebase="..//..//build//classes" width="650" height="450">
<p>This requires a java-enabled browser</p>
</applet>

请帮忙。 :(

I am trying to publish the applet on the web. I know the syntax of the <applet> tag, and the icons for the buttons I am using are in the same folder as all of the classes. I don't know what is wrong. Here is the code:

<applet code="Bomb.class" codebase="..//..//build//classes" width="650" height="450">
<p>This requires a java-enabled browser</p>
</applet>

Please help. :(

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

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

发布评论

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

评论(2

花之痕靓丽 2024-10-14 14:53:32

发布 Applet 时,您确实应该创建一个 jar 文件,其中包含 Applet 的类和资源(例如图像)。然后你可以使用ClassgetResource 获取它的 Url,如下所示:

ImageIcon myImage = new ImageIcon(this.getClass().getResource("/img.jpg"));

/ 是这是必要的,因为 ClassgetResource 是如何工作的。

While publishing an applet, you really should create a jar file with the Applet's classes and resources (such as images) in it. Then you can use Class's getResource to get a Url for it, like this:

ImageIcon myImage = new ImageIcon(this.getClass().getResource("/img.jpg"));

The / is necessary because of how Class's getResource works.

好听的两个字的网名 2024-10-14 14:53:32

试试这个

Image myImage= getImage(getDocumentBase(),"img.jpg");
ImageIcon imgIcon = new ImageIcon(myImage);

Try this

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