我在设置quaqua外观和在Windows 7上遇到此错误时遇到了问题:

Warning: ch.randelshofer.quaqua.util.Preferences failed to load Mac OS X global system preferences
java.io.FileNotFoundException: C:\Users\A.Rahman\Library\Preferences\.GlobalPreferences.plist (The system cannot find the path specified)


这是设置外观的代码:

try {

        UIManager.setLookAndFeel("ch.randelshofer.quaqua.QuaquaLookAndFeel");
    } catch (Exception e) { e.printStackTrace();
    }

最佳答案

看来您的lookAndFel仅受Mac支持,因为即使在Windows上,它也被卡在他的卡内,以加载.plist(特定于mac)。

您可以编写lookandfeel的Windows实现
您可以写信给开发人员写。
仔细检查您在Windows上安装了哪个版本。

07-26 07:04