0

我在设置 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();
    }
4

1 回答 1

2

看来您的lookAndFel仅受mac支持,因为它在他内部进行了卡编码以加载.plist(特定于mac),即使他在Windows上也是如此。

你可以写windows的lookandfeel实现 你可以写给开发者写。仔细检查您在 Windows 上安装的版本。

于 2013-05-23T16:23:26.673 回答