JButton button = new JButton("Click me!"); Dimension dimension = new Dimension(150,50); // width, height button.setPreferredSize(dimension);
JButton okButton = new JButton("Ok"); okButton.setPreferredSize(new Dimension(100, 30));In the above example, we create a button with the text "Ok" and set its preferred size to 100 pixels width and 30 pixels height. Package library: java.awt.