import javax.swing.*; public class Welcome { public static void main(String args[]) { JOptionPane.showMessageDialog( null, “Welcome to World of Java!”, “Welcome, dear Friend!”, JOptionPane.PLAIN_MESSAGE); System.exit(0); } }
练习答案
练习一:
1)Exception in thread "main" java.lang.NoClassDefFoundError: HelloWorld/java
2)Exception in thread "main" java.lang.NoClassDefFoundError: HelloWorld/java
import java.applet.Applet; import java.awt.*; public class WelcomeApplet extends Applet { Label textLabel; public void init() { textLabel=new Label (“Welcome to World of Java!”); textLabel.setAlignment(Label.CENTER); this.add(textLabel); } }