Garbage collection
The garbage collection in Java can free the object no longer in use for me. But before that, does the garbage collection erase the data first (i.e. set the actual value to zero or some other value)?
I asked this question becasue I would like to find out:
I define some sensitive data in the applet. The garbage collection will free the memory as the applet is closed
If I use a special program to scan the memory, can I get back the data?
Thanks for help.
Jeff

