R
Roar Lauritzsen
The javax.microedition.rms.RecordStore provides a way for a MIDlet to
store data persistently and later retrieve it while still operating
without any privileges inside its "sandbox".
I have created an Applet that emulates a MIDlet, but I am unable to
implement RecordStore functionality for an Applet. I simply want to save
a small amount of data when the applet dies, and then when you restart
the Applet, it has access to the data and can update it.
Any ideas on how to achieve this? It is not especially important that
the data survives for all eternity, only that it is available if you
return to the applet within a reasonable time. I would rather not have
to sign the applet, and I would like to avoid putting a file in a
specific location, such as "C:\TEMP\myapplet.dat" or "/home/user/.myapplet".
I am aware of java.io.File.createTempFile(), and I like the the
semantics, if only the created temporary file could be reopened later.
But I suspect that an applet is not even allowed to do createTempFile()
with default privileges.
Regards,
Roar Lauritzsen
store data persistently and later retrieve it while still operating
without any privileges inside its "sandbox".
I have created an Applet that emulates a MIDlet, but I am unable to
implement RecordStore functionality for an Applet. I simply want to save
a small amount of data when the applet dies, and then when you restart
the Applet, it has access to the data and can update it.
Any ideas on how to achieve this? It is not especially important that
the data survives for all eternity, only that it is available if you
return to the applet within a reasonable time. I would rather not have
to sign the applet, and I would like to avoid putting a file in a
specific location, such as "C:\TEMP\myapplet.dat" or "/home/user/.myapplet".
I am aware of java.io.File.createTempFile(), and I like the the
semantics, if only the created temporary file could be reopened later.
But I suspect that an applet is not even allowed to do createTempFile()
with default privileges.
Regards,
Roar Lauritzsen