Java open new windows at the second monitor in full screen size without toolbar
GraphicsConfiguration config = this.getGraphicsConfiguration(); GraphicsDevice myScreen = config.getDevice(); GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment(); GraphicsDevice[] gs = ge.getScreenDevices(); for (int i = 0; i < gs.length; i++) { // System.out.println(“id is ” + gs[i].getIDstring() + ” and the current id is ”…