Plz help me in finding How to read a registry entry using java
Printable View
Plz help me in finding How to read a registry entry using java
First of all, registry is windows specific. Accessing such a location only bind your application to Windows platform. Best solution in such a case is *.ini file, or an XML file.
If you still want to do this, Preferences class is the solution. Read about Preferences class in Java API, you can find the solution yourself.
Preferences (Java 2 Platform SE v1.4.2)