我试图在第二个屏幕上打开一个JFrame并将其居中。我可以在第二个屏幕上打开JFrame,但如何居中。这是我制作的示例代码:

import javax.swing.*;
import java.awt.*;

public class Question {

public Question() {
    JFrame f = new JFrame();
    JPanel panel = new JPanel();
    f.getContentPane().add(panel);
    f.pack();
    f.setTitle("Hello");
    f.setSize(200,200);
    showOnScreen(1,f);
    f.setVisible(true);
}

public static void main(String[] args) {
    Runnable r = new Runnable() {
        @Override
        public void run() {
            new Question();
        }
    };
    SwingUtilities.invokeLater(r);
}
public static void showOnScreen( int screen, JFrame frame ) {
    GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
    GraphicsDevice[] gd = ge.getScreenDevices();
    if( screen > -1 && screen < gd.length ) {
         frame.setLocation(gd[screen].getDefaultConfiguration().getBounds().x, frame.getY());
    } else if( gd.length > 0 ) {
        frame.setLocation(gd[0].getDefaultConfiguration().getBounds().x, frame.getY());
    } else {
        throw new RuntimeException( "No Screens Found" );
    }
}

}


我尝试过类似的操作以使其在第二个屏幕中居中:

frame.setLocation((gd[screen].getDefaultConfiguration().getBounds().x*3/2)-200, ((gd[screen].getDefaultConfiguration().getBounds().height)/2)-200);


它可以工作,但我不想硬编码,因为在实际程序中,以后的帧大小会发生变化。

我也试过这个:

frame.setLocation((gd[screen].getDefaultConfiguration().getBounds().width)/2-frame.getSize().width/2, (gd[screen].getDefaultConfiguration().getBounds().height)/2-frame.getSize().height/2);


但随后在第一个屏幕上将其打开。说得通。

请有人可以帮助您应用正确的修复程序。感谢你的帮助。谢谢。

最佳答案

这就是我解决的方法。我的应用程序最多可以有两个屏幕。

  public void showOnScreen( int screen, JFrame frame ) {
    GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
    GraphicsDevice[] gd = ge.getScreenDevices();
    if( screen > 0 && screen < 2 ) {
        int x = frame.getWidth()/2;
        int y = frame.getHeight()/2;
        frame.setLocation((gd[screen].getDefaultConfiguration().getBounds().width * 3/2) - x,   (gd[screen].getDefaultConfiguration().getBounds().height *1/2) - y);
    } else if( gd.length > 0 ) {
        frame.setLocationRelativeTo(null);
    } else {
        throw new RuntimeException( "No Screens Found" );
    }
}

07-24 09:47