Below is a java swing code for the Hello World program.
| import javax.swing.JFrame; | ||
| import javax.swing.JLabel; | ||
| //import statements | ||
| //Check if window closes automatically. | ||
| Otherwise add suitable code | ||
| public class HelloWorldFrame extends JFrame { | ||
| new HelloWorldFrame(); | ||
| public static void main(String args[]) { | ||
| new HelloWorldFrame(); | ||
| } | ||
| HelloWorldFrame() { | ||
| JLabel jlbHelloWorld = new JLabel(”Hello | ||
| World”); | ||
| add(jlbHelloWorld); | ||
| this.setSize(100, 100); | ||
| // pack(); | ||
| setVisible(true); | ||
| } | ||
| } | ||
1 comment:
hyy thanks man
Post a Comment