在 Java ME 中将日期保存到 RMS

发布于 2024-12-06 21:22:47 字数 123 浏览 0 评论 0原文

我想将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

指尖上得阳光 2024-12-13 21:22:47

您可以使用 Date.getTime(),它返回一个 long。您可以使用 new Date(long) 构造函数反转该过程。

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文