Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在单个监视器的情况下使用 java.awt.Toolkit.getDefaultToolkit().getScreenSize();
但是在双显示器中我现在该怎么办?
你想要的是:
GraphicsDevice[] monitors = GraphicsEnvironment.getLocalGraphicsEnvironment().getScreenDevices();
这将是连接到系统的所有监视器的列表。
这些 GraphicsDevice 对象有一套有用的方法。