Méthode 1 :
//setSize(300, 200); pack(); // 得到显示器屏幕的宽、高 int width = Toolkit.getDefaultToolkit().getScreenSize().width; int height = Toolkit.getDefaultToolkit().getScreenSize().height; // 得到窗体的宽、高 int windowsWidth = this.getWidth(); int windowsHeight = this.getHeight(); //System.out.println(windowsWidth+","+windowsHeight); this.setBounds((width - windowsWidth) / 2,(height - windowsHeight) / 2, windowsWidth, windowsHeight);
Méthode 2 :
setLocationRelativeTo(null);
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!