It looks like Werner Randelshofer's fine Quaqua Look-and-feel for Java Swing over Mac OS X has been orphaned for Mavericks. Is there any alternative or forked effort to continue updates, especially for the JFileChooser replacement?

有帮助吗?

解决方案

There is a fork of the project which does support Mavericks: https://github.com/karlvr/Quaqua

By "support", I simply mean that it doesn't explode when you try to use it. The file chooser does work. Most other custom UIs still work, but (AFAIK) have not been updated at all.

其他提示

i had some problems with the JFileChooser following solves my problems:

Add a Thread.sleep(500) before you call JFilerChooser.showOpenDialog

    try {
        Thread.sleep(500);
    }
    catch(Exception e) {

    }
    if (o_JFileChooser.showOpenDialog(null) == JFileChooser.APPROVE_OPTION) {

.....

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top