Sample code:

    JFrame jFrame = new JFrame("Test");
    jFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    jFrame.setLocationRelativeTo(null);
    jFrame.setSize(600, 600);
    jFrame.pack();
    // jFrame.setLocationRelativeTo(null); // same results
    jFrame.setVisible(true);

screenshot

Is this the OpenJDK's fault? I recall hearing it wasn't as good as Sun's, but since it became the standard for Ubuntu or whatever I decided to go along with it. The program is probably gonna run on windows, so I suppose I'm gonna have to check there... Any easy way to fix this in a platform independent way without breaking it where it already works?

link|improve this question
In you screenshot, the top-left corner is perfectly centered. You just need to offset it by the height and width of the frame. – jjnguy Aug 13 '10 at 19:36
1  
As pointed out by Evan, this code is calling setLocationRelativeTo() too early in the code. It must be done after pack()/setSize(). Also note that in both your example and Evan's, the call to setSize() is redundant if immediately followed by pack(). – Andrew Thompson Mar 18 '11 at 12:25
feedback

3 Answers

up vote 1 down vote accepted

One way is to manually position the window. Put the following code right after your call to pack().

Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
Point middle = new Point(screenSize.width / 2, screenSize.height / 2);
Point newLocation = new Point(middle.x - (jFrame.getWidth() / 2), 
                              middle.y - (jFrame.getHeight() / 2));
jFrame.setLocation(newLocation);

Disclaimer, this was only tested on windows.

Also, you should always use setPreferredSize() instead of setSize().

link|improve this answer
Same thing happens. I wonder if it's my monitor? – captain poop Aug 13 '10 at 19:35
@captain, you get the same results as in your question? – jjnguy Aug 13 '10 at 19:37
@Justin yep :(( – captain poop Aug 13 '10 at 19:39
@captain, try running it without dividing getWidth and getHeight by 2. So: new Point(middle.x - (jFrame.getWidth()), middle.y - (jFrame.getHeight())); – jjnguy Aug 13 '10 at 19:41
@Justin same thing happened. It's weird because I can set the location normally, but neither of those methods worked. Well, I realize that the problem is the jFrame getWidth() and getHeight(). Width is 10, Height is 30, even though I've set the jframe size to 600 x 600. – captain poop Aug 13 '10 at 19:45
show 4 more comments
feedback
JFrame jFrame = new JFrame("Test");
jFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//jFrame.setLocationRelativeTo(null);
jFrame.setSize(600, 600);
jFrame.pack();
jFrame.setVisible(true);
jFrame.setLocationRelativeTo(null); //To center the code

This will correct the problem and center the Jframe

link|improve this answer
feedback
jFrame.validate();

This actually works better since pack can change the frame size, while validate leaves the frame size alone.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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