Applet trouble - NoClassDefFoundError
问题 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 HTML: <html> <head> <meta http-equiv="Content-Type" content"text/html; charset=utf-8"> </head> <body> <applet code = "SimpleApplet.class" width = "320" height = "100"></applet> </body> </html> My Java: package test; import javax.swing.*; public class SimpleApplet extends JApplet{ public void init(){ try{ SwingUtilities