如何从 JFileChooser(JAVA Swing) 中禁用文件操作、文件选择和过滤面板?
Posted
技术标签:
【中文标题】如何从 JFileChooser(JAVA Swing) 中禁用文件操作、文件选择和过滤面板?【英文标题】:How can the disable file operation, file selection and filter panel from JFileChooser(JAVA Swing)? 【发布时间】:2009-04-28 09:11:49 【问题描述】:我需要在Panel
中嵌入JFileChooser
对话框。我只需要文件和文件夹视图。如何从JFileChooser()
dialogBox
禁用dialogBox
中包含的其他面板,即(文件操作、文件选择和过滤面板)..
谢谢
【问题讨论】:
我已经能够禁用打开/取消按钮面板,但仍然存在其他问题。文件系统视图视图=空; JFileChooser jfc=新的 JFileChooser(); fc.setControlButtonsAreShown(false); 我已经能够禁用打开/取消按钮面板,但仍然存在其他问题。 FileChooser jfc=新的 JFileChooser(); jfc.setControlButtonsAreShown(false); 【参考方案1】:您可能想研究使用JTree
来显示文件结构。
将文件结构转换为TreeModel
的实现相当容易。
基本上我会先创建一个名为 FileTreeModel
的类。
然后,您可以使用***目录作为模型的根目录并从那里开始。
然后,您只需将JTree
的TreeModel
设置为FileTreeModel
的FileTreeModel
。
FileTreeModel
的代码可能如下所示:
private File root;
public TreeModel(File root)
this.root = root;
public boolean isLeaf(Object node)
File f = (File) node;
return !f.isDirectory();
您需要实现接口的其余部分。但这很简单。
【讨论】:
以上是关于如何从 JFileChooser(JAVA Swing) 中禁用文件操作、文件选择和过滤面板?的主要内容,如果未能解决你的问题,请参考以下文章
java JFileChooser 选择文件时,文件很多的时候如何能进行日期排序,便于查找想要选择的文件