如何将dom4j xml转换为Swing Jtree?

时间:2011-04-01 07:06:17

标签: java xml dom4j

我正在使用dom4j来解析xml。然后我希望能够将此xml表示为Jtree。每当我通过dom4j以编程方式添加或删除节点时,我希望更改立即反映在Jtree中。当我单击Jtree节点时,如何捕获该事件?

我在http://dom4j.sourceforge.net/apidocs/

发现了dom4j.swing包

但是,我不知道如何使用它。我应该使用哪种,我不确定。我似乎无法在这方面找到任何示例或教程。

BranchTreeNode,DocumentTreeModel,LeafTreeNode。

import org.dom4j.Document;
import org.dom4j.DocumentHelper;
import org.dom4j.Element;

public class Foo {

    public Document createDocument() {
        Document document = DocumentHelper.createDocument();
        Element root = document.addElement( "root" );

        Element author1 = root.addElement( "author" )
            .addAttribute( "name", "James" )
            .addAttribute( "location", "UK" )
            .addText( "James Strachan" );

        Element author2 = root.addElement( "author" )
            .addAttribute( "name", "Bob" )
            .addAttribute( "location", "US" )
            .addText( "Bob McWhirter" );

        return document;
    }
}

1 个答案:

答案 0 :(得分:1)