Applet trouble - NoClassDefFoundError

后端 未结 3 1219
太阳男子
太阳男子 2020-12-18 08:01

I realize there\'s a million of these posts but none of them have helped me so here goes: I\'m trying to deploy a very, very simple applet that will not load properly. My HT

3条回答
  •  时光说笑
    2020-12-18 08:58

    Judging from

    along with other attempts, including removing the ", trying absolute and all partial path names, and using .java

    You are attempting to source test/SimpleApplet.java rather than test/SimpleApplet.class. You will need to compile your SimpleApplet.java file into a SimpleApplet.class file

    Make sure that when you do, you use

    
    

    As /test is the codebase, rather than the package name.

提交回复
热议问题