Android - 获取当前(今天)日期

发布于 2024-12-10 22:44:22 字数 59 浏览 0 评论 0原文

只是一个问题,在 android 中获取当前/今天的日期。从日期选择器或简单的日期格式获取它是否更明智?

Just a question , to get the current / today date in android. Is it more advisable to get it from a date picker or from a simple date format.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

黯然#的苍凉 2024-12-17 22:44:22

您可以尝试 System.currentTimeMillis() 它返回当前时间(以毫秒为单位)。

You can try System.currentTimeMillis() which Returns the current time in milliseconds.

沦落红尘 2024-12-17 22:44:22

使用这个

String currentDate = DateFormat.getDateInstance().format(new Date());

HTH

use this

String currentDate = DateFormat.getDateInstance().format(new Date());

HTH

花伊自在美 2024-12-17 22:44:22

如果您希望用户从 DatePicker 中选择日期,那么它是希望实现 DatePicker。如果您想直接在 TextView 中显示日期,请使用 SimpleDateFormat

If you want that user selects the date from DatePicker then it is desirable to implement DatePicker. And if you want to display date directly in TextView then use SimpleDateFormat.

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