发布小程序时出现问题
我正在尝试在网络上发布该小程序。我知道
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
发布 Applet 时,您确实应该创建一个
jar
文件,其中包含 Applet 的类和资源(例如图像)。然后你可以使用Class
的getResource
获取它的Url
,如下所示:/
是这是必要的,因为Class
的getResource
是如何工作的。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 useClass
'sgetResource
to get aUrl
for it, like this:The
/
is necessary because of howClass
'sgetResource
works.试试这个
Try this