我正在使用 JSF 2.1 和 Primefaces 3.3。我正在使用 primefaces 树组件从数据库中创建树。我想在所有级别按字母顺序对树节点进行排序。请帮助我。
3 回答
我们在排序时遇到了问题,Comparator
并发现已经提供了一个方便的PrimeFaces TreeUtils.sortNode(TreeNode, Comparator)类,它就像一个魅力:)
您必须使用Comparator 类对 ManagedBeanDefaultTreeNode
中的 Primefaces 对象进行排序。Collections.sort
public TreeNodeComparator() implements Comparator<TreeNode> {
public int compare(TreeNode n1, TreeNode n2) {
// This assumes the tree node data is a string
return n1.getData().compareTo(n2.getData());
}
}
在您的托管 bean 中,您需要组装您的子列表而不添加他们的父母。那可以稍后来。现在为每个级别建立您的孩子列表并将其设置parent
为null
;
TreeNode node1 = new DefaultTreeNode("node1", null);
TreeNode node2 = new DefaultTreeNode("node2", null);
TreeNode child1node1 = new DefaultTreeNode("zgnagn", null);
TreeNode child2node1 = new DefaultTreeNode("vvnieeianag", null);
TreeNode child1node2 = new DefaultTreeNode("cajkgnagair", null);
TreeNode child2node2 = new DefaultTreeNode("ajaavnagwokd", null);
rootNodeChildren.add(node1);
rootNodeChildren.add(node2);
node1Children.add(child1node1);
node1Children.add(child2node1);
node2Children.add(child1node2);
node2Children.add(child2node2);
我们将所有内容设置为 null 的原因是,当在 DefaultTreeNode 上设置父级时,它会添加到父级子列表中。设置节点父节点的顺序决定了它们在树组件中出现的顺序。
知道我们可以使用比较器对每个列表进行单独排序。
Collections.sort(rootNodeChildren, new TreeNodeComparator());
Collections.sort(node1Children, new TreeNodeComparator());
Collections.sort(node2Children, new TreeNodeComparator());
现在所有列表都已排序,因此我们可以一次循环遍历相应的父级列表。您可能可以编写一个算法来确定这一点,或者您可以保留一个单独的数据结构来构建树层次结构而不添加到列表中。
另一种方法,总体上可能更简单,就是重写 DefaultTreeNode 类并给它一个排序方法:
public SortableDefaultTreeNode extends DefaultTreeNode {
public void sort() {
TreeNodeComparator comparator = new TreeNodeComparator();
Collections.sort(this.children, comparator);
for (TreeNode child : children) {
child.sort();
}
}
}
现在您可以构建您的 TreeNodes,然后调用root.sort()
它,它将递归地按字母顺序对每个级别的所有子节点进行排序。
您还可以使用通用的可比较 TreeNode 方法,例如:
Base 取自 primefaces DefaultTreeNode
,未修改的更改被遗漏在下面的代码中。
如果孩子的不应该限制在 T 上,可以使用TreeNodeComparable<T extends Comparable<?>>
投到Comparable
incompareTo()
方法。
public class TreeNodeComparable<T extends Comparable<T>> implements TreeNode, Serializable,
Comparable<TreeNodeComparable<T>>
{
private static final long serialVersionUID = ...;
private T data;
private List<TreeNodeComparable<T>> children;
public TreeNodeComparable(final String type, final T data, final TreeNodeComparable<T> parent)
{
this.type = type;
this.data = data;
this.children = (List) new TreeNodeChildren(this);
if (parent != null)
parent.getChildren().add(this);
}
/**
* Comparison only depends on the underlying data
*
* @see ObjectUtils#compare(Comparable, Comparable)
*/
@Override
public int compareTo(final TreeNodeComparable<T> node)
{
if (node == null)
throw new NullPointerException("node");
return ObjectUtils.compare((T) this.getData(), (T) node.getData());
}
/**
* Recursively sorts the complete tree.
*/
public void sort()
{
Collections.sort(this.children);
for (final TreeNodeComparable<T> child : this.children)
{
child.sort();
// must reset parent due to PF problems
// http://forum.primefaces.org/posting.php?mode=reply&f=3&t=39752
child.setParent(this);
}
}
@SuppressWarnings("unchecked")
@Override
public boolean equals(final Object obj)
{
if (this == obj)
return true;
if (obj == null || this.getClass() != obj.getClass())
return false;
final TreeNodeComparable<T> other = (TreeNodeComparable<T>) obj;
return ObjectUtils.equals(this.data, other.data);
}
@Override
public int hashCode()
{
return new HashCodeBuilder().append(this.data).toHashCode();
}
public void setData(final Object data)
{
if (data != null && !(data instanceof Comparable))
throw new IllegalArgumentException();
this.data = (T) data;
}
@SuppressWarnings(
{
"unchecked", "rawtypes"
})
public List<TreeNode> getChildren()
{
return (List) this.children;
}
}