Displaying System Files in JTree

In this section, you will learn to create a JTree that displays system files. The java.util.properties package represents a persistent set of properties for displaying the system files in a tree.

Displaying System Files in JTree

Displaying System Files in JTree

     

In this section, you will learn to create a JTree that displays system files. The java.util.properties package represents a persistent set of properties for displaying the system files in a tree.

Description of the program:

This program teaches to display all system files in a tree on the frame. First of all you need a frame that displays the system files in  a tree. The getProperties() displays the current values of system and returns the  system objects. Create a tree using JTree() constructor with system property. The setLookAndFeel() method sets look and feel of the generated tree. This method takes a string argument ("com.sun.java.swing.plaf.windows.WindowsLookAndFeel") that displays the formatting design of the tree. If you want to display the root node, you must be use setRootVisibles(true) method.

getProperties(): 
This method displays the current values of system and searchs the property with the specified key in the properties list.

Here is the code of this program:

import javax.swing.*;
import javax.swing.event.*;
import java.util.Properties;
import javax.swing.JTree.*;

public class FileDirectoryTree{
public static void main(String[] args) {
try {
UIManager.setLookAndFeel(
"com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
JFrame fm = 
new JFrame("System file properties of tree ");
Properties p = System.getProperties();
JTree tree = new JTree(p);
tree.setRootVisible(true);
JScrollPane scrollpane = new JScrollPane(tree);
fm.getContentPane().add(scrollpane, "Center");
fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 
fm.setSize(450,400);
fm.setVisible(true);
}
catch (Exception e) {}
}
}

Download this program. 

Output this program:

Tutorials

  1. Display Image in Java
  2. Show Coordinates
  3. What is Java Swing?
  4. Creating a Frame
  5. Setting an Icon for a Frame in Java
  6. Show Dialog Box in Java
  7. Show message and confirm dialog box
  8. Show input dialog box
  9. Changing the Label of a JButton Component in Java
  10. Setting Multi-Line label on the Button
  11. Setting icon on the button in Java
  12. Making a Frame Non Resizable in Java
  13. Remove Minimize and Maximize Button of Frame in Java
  14. Removing the Title Bar of a Frame
  15. Setting Bounds for a maximized frame
  16. Iconifying and Maximizing a frame in Java
  17. Making a component drag gable in java
  18. Create a ToolBar in Java
  19. Animating Images in Java Application
  20. Drawing with Color in Java
  21. Drawing with Gradient Color in Java
  22. Adding a Rollover and Pressed Icon to a JButton Component in Java
  23. Creating Check Box in Java Swing
  24. Customize the Icon in a JCheckBox Component of Java Swing
  25. Create a JComboBox Component in Java
  26. Combo Box operation in Java Swing
  27. Create a JRadioButton Component in Java
  28. Selecting a Radio Button component in Java
  29. Create a JList Component in Java
  30. Setting Tool Tip Text for items in a JList Component
  31. Setting the Dimensions of an Item in a JList Component in Java
  32. Create a JSpinner Component in Java
  33. Show Time in JSpinner Component
  34. Disabling Keyboard Editing in a JSpinner Component
  35. Limiting the Values in a Number JSpinner Component
  36. JSlider Component of Java Swing
  37. Progress Bar in Java Swing
  38. Create menus and submenus in Java
  39. Crate a Popup Menu in Java
  40. Create a Popup Menus with Nested Menus in Java