在java swing中突出显示树中的搜索节点

时间:2012-09-17 09:44:43

标签: java swing jtree renderer treemodel

m_searchButton.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
        DefaultMutableTreeNode node = searchNode(m_searchText.getText());
        if (node != null) {
          TreeNode[] nodes = m_model.getPathToRoot(node);
          TreePath path = new TreePath(nodes);
          m_tree.scrollPathToVisible(path);
          m_tree.setSelectionPath(path);
        } else {
          System.out.println("Node with string " + m_searchText.getText() + " not found");
        }
    }
});

searchNode()的代码是

public DefaultMutableTreeNode searchNode(String nodeStr) {
    DefaultMutableTreeNode node = null;
    Enumeration e = m_rootNode.breadthFirstEnumeration();
    while (e.hasMoreElements()) {
      node = (DefaultMutableTreeNode) e.nextElement();
      if (nodeStr.equals(node.getUserObject().toString())) {
        return node;
      }
    }
    return null;
}

我写过这个代码顶部搜索树中的节点?但我无法用蓝色突出显示找到的节点。你能提供解决方案吗?

1 个答案:

答案 0 :(得分:3)

TreeCellRenderer的实施可以指定所需的颜色。请参阅Customizing a Tree's Display和引用的示例here