Java tutorial
//package com.java2s; import java.awt.*; public class Main { /** * Sets the given {@link Window} to the center of the sceen * * @param window to set to the screen center */ public static void setLocationToCenter(Window window) { window.setLocationRelativeTo(null); } }