Better JFileChooser alternatives for OS X, Linux?

JFileChooser, at least under OS X, produces a very half-baked open dialog that doesn't support things like typing in the start of a file name to select it or disclosure triangles.

Does anyone know of a 3rd-party alternative that has a more fully-featured behaviour? Ideally, I'd like one for each major platform. I'm aware of XFileDialog for windows, but what about Mac and Linux/Unix?

In comparison:

Java的文件选择器

OS X的文件选择器


Does java.awt.FileDialog do what you want, you may need to specify

System.setProperty("apple.awt.fileDialogForDirectories", "true");

if you want to get a directory though


我发现了Quaqua Look&Feel,它可以升级JFileChooser - 它还不够完美,但它可以说更好。

链接地址: http://www.djcxy.com/p/51526.html

上一篇: 实体框架:避免插入重复项

下一篇: 更好的OS X,Linux的JFileChooser替代品?