什么是 getDesktopProperty() for Linux?
2022-09-03 03:03:30
我必须阅读本机操作系统的高对比度模式,并且必须在我的产品上应用设置。现在对于Windows,我做了一些类似这样的事情:
try {
Toolkit toolkit = Toolkit.getDefaultToolkit();
boolean highContrast = (Boolean)toolkit.getDesktopProperty("win.highContrast.on" );
}catch(Exception e) {
}
这适用于Windows,但我需要桌面属性来读取linux高对比度设置。任何人都可以告诉我Linux的桌面属性是什么?