Java Registry Wrapper
Java Registry Wrapper
Java Registry Wrapper was inspired by link posted on DZONE(http://lenkite.blogspot.com/2008/05/access-windows-registry-using-java.html) about accessing windows registry from pure java code. The trick was to use reflection to access private methods defined in WindowsPreference class. The trick was very good but adding reflection code everywhere in your applications where you needed to access registry was not practical. So I decided to create a Opensource Project for a Java Registry Wrapper so that accessing and manipulating windows registry values could be simple method calls. This wrapper class just uses reflection to delegate all calls to WindowsPreference class and also provides methods that directly accept string keys and values.
Read More:
http://javabyexample.wisdomplug.com/java-concepts/34-core-java/62-java-registry-wrapper.html
Thanks