import java.awt.*; import javax.swing.*; class TestJFrame { public static void main(String[] args){ JFrame frame = new JFrame(); frame.setTitle("My first JFrame!"); /* Without show() the frame will not appear on screen! */ frame.setSize(200,400); frame.show(); } }