JApplet - ClassNotFoundException

时间:2015-01-18 16:36:09

标签: java applet classnotfoundexception japplet

我无法让我的applet运行。 googeling for the issue,我发现有数百条关于知道参数codebase的帖子。

在我看来一切都是对的,可能导致问题的原因是什么?

scrabble.jar和Applet.html都位于http://localhost/applet

Error message: ClassNotFoundException: tki.scrabble.ui.swing.AppletUI.class

<applet 
    codebase="http://localhost/applet"
    code="tki.scrabble.ui.swing.AppletUI.class"
    archive="scrabble.jar"
    width=120 height=120>
</applet>

我的小程序:

package tki.scrabble.ui.swing;

import java.awt.BorderLayout;

import javax.swing.JApplet;
import javax.swing.JLabel;

import tki.scrabble.Game;

public class AppletUI extends JApplet {

public AppletUI() {
    super();
    init();
}
public void init() {
    Game game = new Game();     
    GameUI gameUI = new GameUI(game, 500);
    this.getContentPane().setLayout(new BorderLayout());
    this.getContentPane().add(gameUI, BorderLayout.CENTER); 

}

public static void main(String args[]) {
    AppletUI ui = new AppletUI();
    ui.setVisible(true);
}
}

0 个答案:

没有答案