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 オブジェクトには、一連の便利なメソッドがあります。