Home Java Example Java Util Determining When a Preference Node Is Added or Removed



Determining When a Preference Node Is Added or Removed
Posted on: January 12, 2009 at 12:00 AM
This section illustrates you to determine when a Preference Node is added or removed.

Determining When a Preference Node Is Added or Removed

     

This section illustrates you to determine when a Preference Node is added or removed. You can see in the given example that we have add a new node by using the method userRoot().node("/Hello World"). The method exportSubtree(System.out) will show you the added node in the Preference tree. In order to remove the added node, we have used the method removeNode() which removes this preference node and display the message on the console.

Here is the code of AddedOrRemoved.java

 

 

 

 

 

import java.util.prefs.*;

public class AddedOrRemoved{
public static void main(String []args) throws Exception{
Preferences child = Preferences.userRoot().node("/Hello World");
  System.out.println("A new node is added");
  child.exportSubtree(System.out);
  try {
  child.removeNode();
 System.out.println("A new node is removed");
 catch (Exception e) {}
}
}

Output will be displayed as:

Download Source Code:

Related Tags for Determining When a Preference Node Is Added or Removed :
creferenceiomethoduserremovenewrmiusingthisnodeoomoverootexampleaddtoexamrefldeilsectioncanuseceddeinnormmtrmincaddminadesemmerateratesreferxawhenxampstermeeataddedishellohallivmplprestrssrenthavsthellohatfeetermetermpleplprpreferencemovmiodeono


More Tutorials from this section

Ask Questions?    Discuss: Determining When a Preference Node Is Added or Removed  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.