Reputation: 1
I have a simple Java applet with several text fields for input. I would like to be able to somehow cache what the user enters into these fields so that next time they run the applet, they can make a selection from a list of previous inputs.
I have been searching forums and sites and cannot find any way to do this for applets.
Does anyone have a suggestion or a kick in the right direction?
Upvotes: 0
Views: 168
Reputation: 168835
As well as cookies, here are a few more possibilities.
PersistenceService
to store data. Here is a demo. of the PersistenceService
.Upvotes: 1