我有一个java web服务器。一个html页面提供java applet!我在不使用服务器的情况下测试了html文件,它运行正常。 html文件放置了一个名为“applets”的文件夹,其中包含“.class”
例如
html的
<applet code="applets/init.class" width="80%" height="80%> </applet>
我的问题是当我通过java服务器传递它时,我收到错误
ClasNotFoundException
applets.init.class
我已经通过浏览器直接成功下载了.class,这意味着服务器正在为.class提供服务。
当实际路径为“applets / init.class”时,为什么服务器会在“applets.init.class”中搜索.class
答案 0 :(得分:0)
你必须这样做:
<applet code="init" codebase="applets/" width="80%" height="80%"> </applet>
另请注意缺少"
以关闭身高。