Here you can find the source of setCenter(Component component)
public static void setCenter(Component component)
//package com.java2s; //License from project: Open Source License import java.awt.*; public class Main { public static void setCenter(Component component) { Toolkit toolkit = Toolkit.getDefaultToolkit(); Dimension screenSize = toolkit.getScreenSize(); component.setLocation(screenSize.width / 2 - component.getWidth() / 2, screenSize.height / 2 - component.getHeight() / 2); }/*w ww. j a va 2 s . c o m*/ }