我正在使用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;
}
}
答案 0 :(得分:1)