我在这个贴也提了相同的问题:http://expert.csdn.net/Expert/topic/2990/2990664.xml?temp=.5433771 但没人回答。

解决方案 »

  1.   

    这是个小问题啊。我一直这样用的。
    如果没打包:
    <applet id="xxx" code="xxx.class" name="xxx" height="500" width="700" >
    </applet>如果打包了youpackge:
    <applet id="xxx" code="youpackge.xxx.class" archive="msdfg.jar" name="xxx" height="500" width="700" >
    </applet>
    打包的jar文件就放在和jsp一个目录就可以了
      

  2.   

    codebase写你实际的ip地址。路径要对。
      

  3.   

    applet的类或包不能放在classes 中,那样applet访问不到当applet类和普通jsp或html文件相同对特
      

  4.   

    感谢 listening(zqy),谢谢。