- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Get the total number of leaves of a JTree in Java?
To get the total number of leaved of a JTree, apply the getLeafCount() method on the root node. Let’s say our root node is “node”, therefore to count the number of leaves, use −
node.getLeafCount()
The following is an example to get the total number of leaves of a JTree −
package my; import javax.swing.JFrame; import javax.swing.JTree; import javax.swing.tree.DefaultMutableTreeNode; public class SwingDemo { public static void main(String[] args) throws Exception { JFrame frame = new JFrame("Demo"); DefaultMutableTreeNode node = new DefaultMutableTreeNode("Website"); DefaultMutableTreeNode node1 = new DefaultMutableTreeNode("Videos"); DefaultMutableTreeNode node2 = new DefaultMutableTreeNode("Tutorials"); DefaultMutableTreeNode node3 = new DefaultMutableTreeNode("QA"); DefaultMutableTreeNode node4 = new DefaultMutableTreeNode("Tools"); node.add(node1); node.add(node2); node.add(node3); node.add(node4); DefaultMutableTreeNode one = new DefaultMutableTreeNode("PHP Videos"); DefaultMutableTreeNode two = new DefaultMutableTreeNode("HTML5 Videos"); DefaultMutableTreeNode three = new DefaultMutableTreeNode("Blockchain Videos"); DefaultMutableTreeNode four = new DefaultMutableTreeNode("Java"); DefaultMutableTreeNode five = new DefaultMutableTreeNode("DBMS"); DefaultMutableTreeNode six = new DefaultMutableTreeNode("CSS"); DefaultMutableTreeNode seven = new DefaultMutableTreeNode("MongoDB"); DefaultMutableTreeNode eight = new DefaultMutableTreeNode("Python QA"); DefaultMutableTreeNode nine = new DefaultMutableTreeNode("jQuery QA"); DefaultMutableTreeNode ten = new DefaultMutableTreeNode("Photo Editing Tool"); node1.add(one); node1.add(two); node1.add(three); node2.add(four); node2.add(five); node2.add(six); node2.add(seven); node3.add(eight); node3.add(nine); node4.add(ten); JTree tree = new JTree(node); for (int i = 0; i < tree.getRowCount(); i++) { tree.expandRow(i); } tree.putClientProperty("JTree.lineStyle", "Angled"); System.out.println("Depth of Tree = " + node.getDepth()); System.out.println("Count of Tree Leaves = " + node.getLeafCount()); tree.setRowHeight(25); frame.add(tree); frame.setSize(600,450); frame.setVisible(true); } }
Output
This will produce the following output -
Following is our JTree −
- Related Articles
- How to get the leaves of nodes in a JTree with Java?
- Get the number of siblings of a node in JTree with Java
- Get the number of levels above a node in JTree with Java
- How to get the number of siblings of this node in a JTree?
- How to get the depth of root node in a JTree with Java?
- Java Program to get the next sibling in a JTree
- Java Program to get the count of child nodes of any node in JTree
- Get the total number of same objects in JavaScript
- Java Program to get the previous node from a JTree
- Java program to get the previous sibling from a JTree
- Java Program to get the previous leaf from a JTree
- Get the total space of this partition in Java
- How to get this nodes’s parent in a JTree with Java?
- Can we get total number of rows in a MySQL database?
- How to get the total number of checkboxes in a page using Selenium?

Advertisements