JFileChooser on OS X(OS X 上的 JFileChooser)
问题描述
JFileChooser 看起来一点也不像本机小部件.我似乎记得读过一些 hack 让它看起来像本机小部件但搜索它知道我似乎无法再次找到它我遇到了建议使用 java.awt.FileChooser 但该类似乎不在分布.如何让 JFileChooser 看起来像原生小部件?
JFileChooser looks nothing like the native widget. I seem to remember reading some hack to get it look like the native widget but searching for it know i can't seem to find it again i came across posts that suggest using java.awt.FileChooser but that class does not seem to be in the distribution. How can i make JFileChooser make look like the native widget?
推荐答案
java.awt.FileDialog
将是帖子所指的类.不出所料,它比 Swing 版本更受限制.所有 Java SE 实现都必须具有 FileDialog
类(尽管无头配置可能无法用它做任何有用的事情).
java.awt.FileDialog
will be the classes the posts meant. It is, unsurprisingly, more limited that the Swing version. All Java SE implementations are required to have the FileDialog
class (although headless configurations may not be able to do anything useful with it).
这篇关于OS X 上的 JFileChooser的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:OS X 上的 JFileChooser
基础教程推荐
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 降序排序:Java Map 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01