gpt4 book ai didi

java - java中如何获取当前显示器的宽度和高度

转载 作者:太空宇宙 更新时间:2023-11-04 06:20:59 24 4
gpt4 key购买 nike

如何在java中获取多显示器场景中当前显示器屏幕的宽度和高度。

GraphicsDevice gd = GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice();
int width = gd.getDisplayMode().getWidth();
int height = gd.getDisplayMode().getHeight();

即使我在其他监视器中运行,这段代码也会给出同一监视器的宽度和高度。

如何获取当前显示器的宽度和高度。请帮忙。

最佳答案

尝试:

GraphicsDevice gd[] = GraphicsEnvironment.getLocalGraphicsEnvironment().getScreenDevices();

然后您的所有显示器都会在阵列中。

现在获取宽度和高度:

int width = gd[n].getDisplayMode().getWidth();
int height = gd[n].getDisplayMode().getHeight();

关于java - java中如何获取当前显示器的宽度和高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27419390/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com