Is it possible to read/write to windows registry using java?
|
|
Yes, using the java.util.Preferences API, since the Windows implementation of it uses the Registry as a backend. In the end it depends on what you're wanting to do: storing preferences for your app is what the Preferences does just great. If you're wanting to actually change registry keys not having to do with your app, you'll need some JNI app, as described by Mark (shameless steal here):
|
||||
|
|
|
From a quick google:
And...
There is also the option of invoking an external app, which is responsible for reading / writing the registry. |
||
|
|
|
|
The Preferences API approach does not give you access to all the branches of the registry. In fact, it only gives you access to where the Preferences API stores its, well, preferences. It's not a generic registry handling API, like .NET's To read/write every key I guess JNI or an external tool would be the approach to take, as Mark shows. |
|||
|
|
|
|
There are few JNDI service providers to work with windows registry. One could observe http://java.sun.com/products/jndi/serviceproviders.html |
||
|
|
|
|
I've done this before using jRegistryKey. It is an LGPL Java/JNI library that can do what you need. Here's an example of how I used it to enabled Registry editing through regedit and also the "Show Folder Options" option for myself in Windows via the registry.
|
||
|
|
|
|
thank you very much |
||
|
|
|
|
how to write windows services in java |
||
|
|
|
|
BTW, WinPack has been moved to the following address: http://www.teamdev.com/jniwrapper/winpack/
WinPack also supports for windows services management: http://www.teamdev.com/jniwrapper/winpack/#services |
||
|
|
|
|
You could try WinRun4J. This is a windows java launcher and service host but it also provides a library for accessing the registry. (btw I work on this project so let me know if you have any questions) |
||
|
|
