Manipulate Windows Registry with java

How to Manipulate the Windows Registry with java
[55 byte] By [surarama] at [2007-10-2 0:29:28]
# 1
I think there was Preferences API out there. Try that: http://java.sun.com/developer/technicalArticles/releases/preferences/%
duffymoa at 2007-7-15 16:43:55 > top of Java-index,Java Essentials,Java Programming...
# 2

Note that I don't think that will necessarily manipulate the registry. I think the implementation is free to do what it wants, but that current Sun VMs for Windows happne to use the registry. I may be wrong in that though.

Also note that this does not allow arbitrary registry manipulation. If you want to do that, you'll have to use JNI to access native Windows C/C++ libraries that do that.

jverda at 2007-7-15 16:43:55 > top of Java-index,Java Essentials,Java Programming...