How to read a registry variable of type reg_binary? For example, the value of a variable of type reg_sz I read the code below. But when I try to access the reg_binary type, I get null.
public static void main(String[] args) { String value = com.sun.deploy.util.WinRegistry.getString(WinRegistry.HKEY_CURRENT_USER, "Control Panel\\Desktop", "TranscodedImageCache"); System.out.println(value); }