Hi,
I need to store the last Checked status from a radioButton. The easiest way to do it was to save a Boolean variable but it seems it's not supported by RandomAccessFile lib.
I tried to use WriteObject to save the boolean value, but after a successfully save when I use ReadObject I get this error: java.lang.NegativeArraySizeException: -1
Do I need to use a string equivalent or something? Like saving "true" or "false" ?
Thanks
I need to store the last Checked status from a radioButton. The easiest way to do it was to save a Boolean variable but it seems it's not supported by RandomAccessFile lib.
I tried to use WriteObject to save the boolean value, but after a successfully save when I use ReadObject I get this error: java.lang.NegativeArraySizeException: -1
Do I need to use a string equivalent or something? Like saving "true" or "false" ?
Thanks