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 找到其中的大部分内容,但 Toolkit.getScreenResolution 返回一个以 Dots-Per-Inch 为单位的值。
我不能只是对(相当庞大的)整个程序进行重组以使用 DPI 而不是 BPP,而且我也不完全知道其中的区别。
java中有没有办法抓取本地显示的BPP?
后来我发现这可以使用 java.awt.GraphicsEnvironment、GraphicsDevice 和 DisplayMode 来完成
DisplayMode 提供所需的数据。