- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经使用 Java2s.com 中的这段代码来显示我的主目录的文件树。我想让用户选择将包含我的程序将使用的信息的目录。我进行了多次尝试(太多无法在此处列出)以使树仅显示非隐藏目录。文件和隐藏目录不会显示在树上。
有没有办法做到这一点?我在这上面花了很多时间,但没有成功。有没有办法拦截最终显示的样子?也许渲染器可以询问树并删除属于 isHidden()
的节点?
public class FileTreeDemo {
static File root;
static FileTreeModel model;
public static void main(String[] args) {
// Figure out where in the filesystem to start displaying
if (args.length > 0) {
root = new File(args[0]);
} else {
root = new File(System.getProperty("user.home"));
}
// Create a TreeModel object to represent our tree of files
model = new FileTreeModel(root);
// Create a JTree and tell it to display our model
JTree tree = new JTree();
tree.setModel(model);
// The JTree can get big, so allow it to scroll
JScrollPane scrollpane = new JScrollPane(tree);
// Display it all in a window and make the window appear
JFrame frame = new JFrame("FileTreeDemo");
frame.getContentPane().add(scrollpane, "Center");
frame.setSize(400, 600);
frame.setVisible(true);
}
/**
* The methods in this class allow the JTree component to traverse the file
* system tree and display the files and directories.
*
*/
static class FileTreeModel implements TreeModel {
// We specify the root directory when we create the model.
protected File root;
public FileTreeModel(File root) {
this.root = root;
}
// The model knows how to return the root object of the tree
public Object getRoot() {
return root;
}
// Tell JTree whether an object in the tree is a leaf
@Override
public boolean isLeaf(Object node) {
return ((File)node).isFile();
}
// Tell JTree how many children a node has
public int getChildCount(Object parent) {
String[] children = ((File) parent).list();
if (children == null) {
return 0;
}
return children.length;
}
// Fetch any numbered child of a node for the JTree.
// Our model returns File objects for all nodes in the tree. The
// JTree displays these by calling the File.toString() method.
public Object getChild(Object parent, int index) {
String[] children = ((File) parent).list();
if ((children == null) || (index >= children.length)) {
return null;
}
return new File((File) parent, children[index]);
}
// Figure out a child's position in its parent node.
@Override
public int getIndexOfChild(Object parent, Object child) {
String[] children = ((File) parent).list();
if (children == null) {
return -1;
}
String childname = ((File) child).getName();
for (int i = 0; i < children.length; i++) {
if (childname.equals(children[i])) {
return i;
}
}
return -1;
}
// This method is invoked by the JTree only for editable trees.
// This TreeModel does not allow editing, so we do not implement
// this method. The JTree editable property is false by default.
public void valueForPathChanged(TreePath path, Object newvalue) {
}
// Since this is not an editable tree model, we never fire any events,
// so we don't actually have to keep track of interested listeners
public void addTreeModelListener(TreeModelListener l) {
}
public void removeTreeModelListener(TreeModelListener l) {
}
}
}
最佳答案
忽略隐藏文件取决于模型。渲染器的工作只是显示,它不应该干扰数据选择和过滤。例如,您可以使用 File.listFiles(FileFilter filter)在模型中:
private static final File[] EMPTY_LIST = {};
private File[] getFiles(File parent) {
File[] files = parent.listFiles(new FileFilter() {
@Override
public boolean accept(File file) {
return !file.isHidden();
}
});
return files != null ? files : EMPTY_LIST;
}
@Override
public int getChildCount(Object parent) {
return getFiles((File) parent).length;
}
@Override
public Object getChild(Object parent, int index) {
return getFiles((File) parent)[index];
}
@Override
public int getIndexOfChild(Object parent, Object child) {
File[] files = getFiles((File) parent);
for (int idx = 0; idx < files.length; idx++) {
if (files[idx].equals(child))
return idx;
}
return -1;
}
关于java - 在 Swing JTree 中隐藏文件和隐藏目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25825780/
我正在尝试动态使用 JTree 组件。在根节点下,我有四个节点,其中之一(“操作”)可以有 0 到多个子节点。这是由用户通过根据用户请求打开的单独窗口中的可编辑列表来设置的。编辑此列表后,用户点击“保
我阅读了很多有关此的主题,但仍然存在一些问题。我正在使用 NB 的 java 桌面项目。我已经从调色板创建了树,现在每次单击按钮后我想创建新树并刷新它。所以我在我想让新的 jTree 添加一些 Def
应用简单,一个框架中有两个面板 第一个面板,从数据库中检索所有学生,使用多个 hashmap 获取父子排列并将其显示在树上。 第二个面板,当您点击一个学生时,该学生的所有详细信息 (selection
我有两个 JTrees,里面有一些模拟数据,我想要做的是能够接受每个“工作”(15663-1、15663-2 等)并为每个创建一个节点,它下面的每个部分都有一个节点,以及连接到它下面每个部分的组件。在
当我在 JMenu 上单击鼠标时,它可以正常工作。 我将鼠标移开,它就消失了(正常)。然后我双击我的 JTree 中唯一的条目。 然后,当我单击我的 JMenu 时,它看起来像这样。它出现在 JTre
当我尝试动态更新我的 JTree 时,它工作得很好,但只显示我的新树。但后来我尝试将它添加到 JFrame - 什么也没有发生。 JTree 不更新。我不明白为什么。 public MainFor
我在名为 TreeFrame 的 JFrame 子类的构造函数中包含此代码。我想在 JTree 中显示 3 个级别,每个级别 10 个项目。为什么这会按预期工作: private DefaultTre
我目前在使用 JTree 的单元格编辑器时遇到问题。我的 JTree 中有两个不同的对象:Users 和 Books。 所以用户是 Bianca,书籍是节点。这些节点内的标签(眼睛、油漆标签和垃圾桶)
如何获得 JTree只听其TreeModel虽然它实际上对用户可见,或者至少让它在相应的 JFrame 后立即取消注册。被处置了吗? 据我所知,JTree 从其模型中取消注册的唯一情况是,如果您向它传
我在扩展 JTree 时遇到了奇怪的问题。我尝试将 JTree 添加到 JScrollPane。 树应该恢复到展开状态,但它不起作用 - 树已折叠。 代码如下: if (expansionSta
我想要发生的是在编辑 JTree 时,如果我在编辑框外单击,我想提交编辑。tree.setInvokesStopCellEditing(true); 有所帮助,如果我单击 JTree 中的某处,就会提
我有一个 JTree当用户将鼠标悬停在树节点上时,我想向用户显示一些描述。 我从文档中读到我们可以使用 MouseMotionListener为此。但是我怎样才能获得鼠标移动到的节点的值呢? 任何指针
我正在使用 JTree 并在此命名 JTree 节点 我正在使用右键单击(通过弹出窗口重命名)或 F2 键或双击。但问题是:当我重命名一个名称并按下 Enter 键时,节点成功重命名,当我重命名一个名
我正在使用 Netbeans 在 JAVA 中开发一个小型桌面应用程序。我放置了一个 JTree 并动态填充它。现在一切顺利,我想实现以下两件事: 当填充 JTree 时,它会自动展开它将开始显示
我创建了一个树单元渲染器/编辑器框架,诚然有点老套,但它在 Windows 和 Linux 上运行得很好。下图展示了一个示例设置。 目标是,如果用户单击图像(数字)1 或 2,则应用程序会响应该单击,
我有两个关于 Icons 的问题。 我使用 ImageIcons 作为 JTree 上的默认图标。按照教程的建议,我使用此方法加载图标: protected ImageIcon createImage
我目前正在使用 JTree,更准确地说是使用 CheckBoxTree,这是一个由 JIDE 创建的继承类。我需要找到一种重置树的方法,意思是: 清除选择 删除节点 我尝试取消设置 Tree 变量、t
假设我的 JTree 由以下节点组成。 new DefaultMutableTreeNode("DisplayThisTextOnly {donotdisplaystringsinhere}"); 如
双击时,我将双击的 Jtree 节点的背景突出显示为绿色。当我双击其他节点时,之前选择的绿色节点应该恢复到原来的状态,并且新双击的节点应该亮起绿色。 它在某种程度上起作用,但行为不一致。当我双击子节点
我有这个 Jtree,我必须在我的 tbltables 表中插入“表”。 (我的意思是我的 MSQL 数据库中有一个名为 tbltables 的表,其中有一个表列表)。 所以这些表中也可以有表。所以现
我是一名优秀的程序员,十分优秀!