I would like to save a Date object into an RMS in Java ME. The way I would like to do it is by converting the date first to some String/int/any primitive data type value that the RMS can save. I then would like to read this data back and create a Date object from it. So how can I do this?

link|improve this question

77% accept rate
feedback

1 Answer

up vote 2 down vote accepted

You can use Date.getTime(), which returns a long. You can reverse the process by using the new Date(long) constructor.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.