XML Tree: Simple XML utility class : XML Tree « XML « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Collections Data Structure
8. Database SQL JDBC
9. Design Pattern
10. Development Class
11. Email
12. Event
13. File Input Output
14. Game
15. Hibernate
16. J2EE
17. J2ME
18. JDK 6
19. JSP
20. JSTL
21. Language Basics
22. Network Protocol
23. PDF RTF
24. Regular Expressions
25. Security
26. Servlets
27. Spring
28. Swing Components
29. Swing JFC
30. SWT JFace Eclipse
31. Threads
32. Tiny Application
33. Velocity
34. Web Services SOA
35. XML
Microsoft Office Word 2007 Tutorial
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Java » XML » XML TreeScreenshots 
XML Tree: Simple XML utility class

import java.awt.Color;
import java.awt.Component;
import java.io.File;

import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JScrollPane;
import javax.swing.JTree;
import javax.swing.ToolTipManager;
import javax.swing.tree.DefaultMutableTreeNode;
import javax.swing.tree.DefaultTreeCellRenderer;
import javax.swing.tree.DefaultTreeModel;
import javax.swing.tree.TreeCellRenderer;
import javax.swing.tree.TreeModel;
import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;

import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;

public class VSX2 {

  public TreeModel parse(String filenamethrows Exception {
    SAXParserFactory factory = SAXParserFactory.newInstance();
    XMLIconTreeHandler handler = new XMLIconTreeHandler();
    SAXParser saxParser = factory.newSAXParser();
    saxParser.parse(new File(filename), handler);
    return new DefaultTreeModel(handler.getRoot());
  }

  public static class XMLIconTreeHandler extends DefaultHandler {
    private DefaultMutableTreeNode root, currentNode;

    public DefaultMutableTreeNode getRoot() {
      return root;
    }

    public void startElement(String namespaceURI, String lName, String qName, Attributes attrs)
        throws SAXException {
      String eName = lName;
      if ("".equals(eName))
        eName = qName;
      ITag t = new ITag(eName, attrs);
      DefaultMutableTreeNode newNode = new DefaultMutableTreeNode(t);
      if (currentNode == null) {
        root = newNode;
      else {
        currentNode.add(newNode);
      }
      currentNode = newNode;
    }

    public void endElement(String namespaceURI, String sName, String qNamethrows SAXException {
      currentNode = (DefaultMutableTreeNodecurrentNode.getParent();
    }

    public void characters(char buf[]int offset, int lenthrows SAXException {
      String s = new String(buf, offset, len).trim();
      ((ITagcurrentNode.getUserObject()).addData(s);
    }
  }

  public static class ITag implements IconAndTipCarrier {
    private String name;

    private String data;

    private Attributes attr;

    private Icon icon;

    private String tipText;

    public ITag(String n, Attributes a) {
      name = n;
      attr = a;
      for (int i = 0; i < attr.getLength(); i++) {
        String aname = attr.getQName(i);
        String value = attr.getValue(i);
        if (aname.equals("icon")) {
          tipText = value;
          icon = new ImageIcon(value);
          break;
        }
      }
    }

    public String getName() {
      return name;
    }

    public Attributes getAttributes() {
      return attr;
    }

    public void setData(String d) {
      data = d;
    }

    public String getData() {
      return data;
    }

    public String getToolTipText() {
      return tipText;
    }

    public Icon getIcon() {
      return icon;
    }

    public void addData(String d) {
      if (data == null) {
        setData(d);
      else {
        data += d;
      }
    }

    public String getAttributesAsString() {
      StringBuffer buf = new StringBuffer(256);
      for (int i = 0; i < attr.getLength(); i++) {
        buf.append(attr.getQName(i));
        buf.append("=\"");
        buf.append(attr.getValue(i));
        buf.append("\"");
      }
      return buf.toString();
    }

    public String toString() {
      String a = getAttributesAsString();
      return name + ": " + a + (data == null "" " (" + data + ")");
    }
  }

  public static void main(String args[]) throws Exception {
    JFrame frame = new JFrame("Tree Renderer Test");
    VSX2 parser = new VSX2();
    JTree tree = new JTree(parser.parse("testfile.xml"));

    // Steal the default icons from the default renderer...
    DefaultTreeCellRenderer rend1 = new DefaultTreeCellRenderer();
    IconAndTipRenderer rend2 = new IconAndTipRenderer(rend1.getOpenIcon(), rend1.getClosedIcon(),
        rend1.getLeafIcon());
    tree.setCellRenderer(rend2);
    ToolTipManager.sharedInstance().registerComponent(tree);

    frame.getContentPane().add(new JScrollPane(tree));
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(300400);
    frame.setVisible(true);
  }
}

interface IconAndTipCarrier {
  public Icon getIcon();

  public String getToolTipText();
}

class IconAndTipRenderer extends JLabel implements TreeCellRenderer {
  Color backColor = new Color(0xFF0xCC0xFF);

  Icon openIcon, closedIcon, leafIcon;

  String tipText = "";

  public IconAndTipRenderer(Icon open, Icon closed, Icon leaf) {
    openIcon = open;
    closedIcon = closed;
    leafIcon = leaf;
    setBackground(backColor);
    setForeground(Color.black);
  }

  public Component getTreeCellRendererComponent(JTree tree, Object value, boolean selected,
      boolean expanded, boolean leaf, int row, boolean hasFocus) {
    setText(value.toString());
    if (selected) {
      setOpaque(true);
    else {
      setOpaque(false);
    }

    IconAndTipCarrier itc = null;
    if (value instanceof DefaultMutableTreeNode) {
      Object uo = ((DefaultMutableTreeNodevalue).getUserObject();
      if (uo instanceof IconAndTipCarrier) {
        itc = (IconAndTipCarrieruo;
      }
    else if (value instanceof IconAndTipCarrier) {
      itc = (IconAndTipCarriervalue;
    }
    if ((itc != null&& (itc.getIcon() != null)) {
      setIcon(itc.getIcon());
      tipText = itc.getToolTipText();
    else {
      tipText = " ";
      if (expanded) {
        setIcon(openIcon);
      else if (leaf) {
        setIcon(leafIcon);
      else {
        setIcon(closedIcon);
      }
    }
    return this;
  }

  public String getToolTipText() {
    return tipText;
  }
}

           
       
Related examples in the same category
1. A simple XML parser that builds a tree from SAX eventsA simple XML parser that builds a tree from SAX events
2. DOM Tree Walker Tree Model
3. Demo Tree WalkerDemo Tree Walker
4. XML Tree ViewXML Tree View
5. SAX Tree ViewerSAX Tree Viewer
ww___w___.__j_av___a__2__s__._c__o___m_ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.