vote up 3 vote down star

What's the easiest way to centre a java.awt.Window, such as a JFrame or a JDialog?

flag

58% accept rate
The title should be "in Swing" not "in Java", it would be more clear that way. – Joe Skora Sep 28 '08 at 1:06

3 Answers

vote up 11 vote down check

From this blog:

If you are using Java 1.4 or newer, you can use the simple method setLocationRelativeTo(null) on the dialog box, frame, or window to center it.

link|flag
You learn something new every day. – Joe Skora Sep 28 '08 at 0:58
vote up 3 vote down

This should work in all versions of Java

public static void centreWindow(Window frame) {
    Dimension dimension = Toolkit.getDefaultToolkit().getScreenSize();
    int x = (int) ((dimension.getWidth() - frame.getWidth()) / 2);
    int y = (int) ((dimension.getHeight() - frame.getHeight()) / 2);
    frame.setLocation(x, y);
}
link|flag
vote up 3 vote down

Note that both the setLocationRelativeTo(null) and Tookit.getDefaultToolkit().getScreenSize() techniques work only for the primary monitor. If you are in a multi-monitor environment, you may need to get information about the specific monitor the window is on before doing this kind of calculation.

Sometimes important, sometimes not...

See GraphicsEnvironment javadocs for more info on how to get this.

link|flag
This helped me immensely! Thanks! – Joshua McKinnon Dec 11 '08 at 23:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.