In this section we are going to determine the specified Preference node exists or not.
A preference node can be created automatically by using the methods Preferences.node(), Preferences.userNodeForPackage(), or Preferences.systemNodeForPackage(). To avoid creating a node, you should first check to see if the node 'Roseindia' exists by using the method nodeExists(). If not then create the node using the method userRoot().node("/Roseindia"). In order to show the existed node we have used the method exportSubtree() which emits the xml document representing the node and its descendents.
Here is the code of NodeExists.java
import java.util.prefs.*;
|
Output will be displayed as:

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.
Ask Questions? Discuss: Determining If a Preference Node Exists
Post your Comment