在 Java ME 中将日期保存到 RMS
我想将 Date 对象保存到 Java ME 中的 RMS 中。我想要的方法是首先将日期转换为 RMS 可以保存的某个 String/int/任何原始数据类型值。然后我想读回这些数据并从中创建一个 Date 对象。那么我该怎么做呢?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
Date.getTime()
,它返回一个long
。您可以使用new Date(long)
构造函数反转该过程。You can use
Date.getTime()
, which returns along
. You can reverse the process by using thenew Date(long)
constructor.