. Java Applets With Swing
Java Applets With Swing
A Hello World Swing Applet
import javax.swing.*;
import java.awt.*;
public class HelloWorldSwingApplet extends JApplet {
public void init() {
getContentPane().add(new JLabel("HelloWorldSwingApplet.java"));
}
}
download source, use right-click and "Save Target As..." to save with a .java extension.
| Comments |
| Sign In |
| to add the first comment for Java Applets With Swing. |