The setValue method of the RegKey class contains the following signatures.
setValue(String subKey, String val)
setValue(String subKey, byte val[])
setValue(String subKey, int val)
Sets a string value into a subkey.
public void setValue(String subKey, String val);
subKey | The subkey that holds the value. |
val | The string that is written out. |
Sets a byte array into a subkey.
public void setValue(String subKey, byte val[]);
subKey | The subkey that holds the value. |
val | The array that is written out. |
Sets an integer value into a subkey.
public void setValue(String subKey, int val);
subKey | The subkey that holds the value. |
val | The integer that is written out. |