I am not very well versed in using the Preference Class. However from reading on here and other websites I feel that what I have should be enough to write into a node of my choosing.
Preferences userPref = Preferences.userRoot();
userPref = userPref.node("HKEY_CURRENT_USER\\Software\\Broadcom");
userPref.put("A", "B");
When trying to write into the node "HKEY_CURRENT_USER\Software\Broadcom" will only writer into the JavaSoft node. Is there anyway to change the subkey to allow me to write into any node I'd like?
P.S. I have tried writing the access location multiple times in different ways. With forward slashes instead of back slashes, with slashes in front of "HKEY", etc.
Anyone have any ideas?