vote up 11 vote down star
3

Is it possible to read/write to windows registry using java?

flag

9 Answers

vote up 5 vote down

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: Check the WinPack for JNIWrapper. It has full Windows Registry access support including Reading and Writing.

The WinPack Demo has Registry Viewer implemented as an example.

Check at http://www.jniwrapper.com/winpack_features.jsp#registry

And...

There is also try JNIRegistry @ http://www.trustice.com/java/jnireg/

There is also the option of invoking an external app, which is responsible for reading / writing the registry.

link|flag
So, how does one edits HKEY_CLASSES_ROOT with the Preferences API? – Vinko Vrsalovic Sep 15 '08 at 12:56
To do that you'll need a JNI app – Epaga Sep 16 '08 at 7:24
vote up 5 vote down

From a quick google:

Check the WinPack for JNIWrapper. It has full Windows Registry access support including Reading and Writing.

The WinPack Demo has Registry Viewer implemented as an example.

Check at http://www.jniwrapper.com/winpack_features.jsp#registry

And...

There is also try JNIRegistry @ http://www.trustice.com/java/jnireg/

There is also the option of invoking an external app, which is responsible for reading / writing the registry.

link|flag
vote up 0 vote down

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.

link|flag
vote up 2 vote down

There are few JNDI service providers to work with windows registry.

One could observe http://java.sun.com/products/jndi/serviceproviders.html

link|flag
vote up 5 vote down

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.

import java.io.File;
import ca.beq.util.win32.registry.RegistryKey;
import ca.beq.util.win32.registry.RegistryValue;
import ca.beq.util.win32.registry.RootKey;
import ca.beq.util.win32.registry.ValueType;


public class FixStuff {

private static final String REGEDIT_KEY = "Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System";
private static final String REGEDIT_VALUE = "DisableRegistryTools";
private static final String REGISTRY_LIBRARY_PATH = "\\lib\\jRegistryKey.dll";
private static final String FOLDER_OPTIONS_KEY = "Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer";
private static final String FOLDER_OPTIONS_VALUE = "NoFolderOptions";

public static void main(String[] args) {
	//Load JNI library
	RegistryKey.initialize( new File(".").getAbsolutePath()+REGISTRY_LIBRARY_PATH );

	enableRegistryEditing(true);		
	enableShowFolderOptions(true);
}

private static void enableShowFolderOptions(boolean enable) {
	RegistryKey key = new RegistryKey(RootKey.HKEY_CURRENT_USER,FOLDER_OPTIONS_KEY);
	RegistryKey key2 = new RegistryKey(RootKey.HKEY_LOCAL_MACHINE,FOLDER_OPTIONS_KEY);
	RegistryValue value = new RegistryValue();
	value.setName(FOLDER_OPTIONS_VALUE);
	value.setType(ValueType.REG_DWORD_LITTLE_ENDIAN);
	value.setData(enable?0:1);

	if(key.hasValue(FOLDER_OPTIONS_VALUE)) {
		key.setValue(value);
	}
	if(key2.hasValue(FOLDER_OPTIONS_VALUE)) {
		key2.setValue(value);
	}			
}

private static void enableRegistryEditing(boolean enable) {
	RegistryKey key = new RegistryKey(RootKey.HKEY_CURRENT_USER,REGEDIT_KEY);
	RegistryValue value = new RegistryValue();
	value.setName(REGEDIT_VALUE);
	value.setType(ValueType.REG_DWORD_LITTLE_ENDIAN);
	value.setData(enable?0:1);

	if(key.hasValue(REGEDIT_VALUE)) {
		key.setValue(value);
	}
}

}
link|flag
vote up 0 vote down

thank you very much

link|flag
vote up 0 vote down

how to write windows services in java

link|flag
vote up 0 vote down

The WinPack Demo has Registry Viewer implemented as an example.

Check at http://www.jniwrapper.com/winpack_features.jsp#registry

BTW, WinPack has been moved to the following address:

http://www.teamdev.com/jniwrapper/winpack/

how to write windows services in java

WinPack also supports for windows services management: http://www.teamdev.com/jniwrapper/winpack/#services

link|flag
vote up 1 vote down

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)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.