当前位置: 技术问答>java相关
java入门级问题
来源: 互联网 发布时间:2015-04-01
本文导语: 不知道我的贴子所放的位置对不对,暂且提问吧: 我做了一个java applet,编译没有问题。 运行时建立html文件,applet code中包含该class,运行html文件,提示: load:class XXX not found. 然而,采用appletviewer XXX.html的方...
不知道我的贴子所放的位置对不对,暂且提问吧:
我做了一个java applet,编译没有问题。
运行时建立html文件,applet code中包含该class,运行html文件,提示:
load:class XXX not found.
然而,采用appletviewer XXX.html的方式运行一切正常。
请问:以上事实是什么原因,我想用浏览器运行applet怎么实现。
我做了一个java applet,编译没有问题。
运行时建立html文件,applet code中包含该class,运行html文件,提示:
load:class XXX not found.
然而,采用appletviewer XXX.html的方式运行一切正常。
请问:以上事实是什么原因,我想用浏览器运行applet怎么实现。
|
This is a popular one! Make sure that all the class files (some applets need more than one) are in the same directory as your web page and any other related files (like images or sound files). If the "codebase" attribute is in the first line of the applet's HTML, just remove it. If there are any special requirements for a particular applet (like a special directory name for the images), it should be in its downloaded zip, or mentioned on the preview page. - If you FTP the files, upload the class files in the binary mode
|
是不是应该将.class file放在你自己的目录的子目录WEB-INF的子目录CLASSES中呢?
yourApplicationDirectory/web-inf/classes中
yourApplicationDirectory/web-inf/classes中
|
http://java.sun.com/getjava/download.html