import javax.swing.*;

public class SwingFrame{
	public static void main(String[] args) throws Exception{
		JFrame frame = new JFrame("Frame in Java Swing");
		JLabel lbl = new JLabel("chandan");
		frame.getContentPane().add(lbl);
		frame.setSize(400, 400);
		frame.setVisible(true);
		frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
	}
}
