jFrame set size

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
import javax.swing.JFrame;
class SizeJFrame {
public static void main(String[] args)
{
JFrame frame = new JFrame();
//Set width and height
frame.setSize(400,500);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
}
import javax.swing.JFrame; class SizeJFrame { public static void main(String[] args) { JFrame frame = new JFrame(); //Set width and height frame.setSize(400,500); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setVisible(true); } }
import javax.swing.JFrame;

class SizeJFrame {
    public static void main(String[] args)
    {
    	JFrame frame = new JFrame();
    	//Set width and height 
    	frame.setSize(400,500);
    	frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    	frame.setVisible(true);
    }
}