如何获取当前日期和时间并将其设置到android中的编辑框?

发布于 2024-12-10 17:06:38 字数 78 浏览 0 评论 0原文

如何在android中获取当前日期和时间以及我们如何设置它 编辑框的日期和时间。

How to get current date with time in android and how can we set that
date andtime to a editbox.

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

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

发布评论

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

评论(1

无人问我粥可暖 2024-12-17 17:06:38

您可以使用以下方式获取当前日期和时间:

Calendar cal=Calendar.getInstance();

现在只需在编辑框中显示此内容,例如:

editBox.setText(String.format("%1$te %1$tB %1$tY %1$r",cal));

这将为您提供日期和时间,例如 - 2009 年 1 月 12 日 10:34:50 pm

要显示其他日期和时间格式,请参阅 http://download.oracle.com/javase/1.5.0/docs/api/java/util/Formatter.html

You can get current date and time using:

Calendar cal=Calendar.getInstance();

Now simply show this in your editbox like:

editBox.setText(String.format("%1$te %1$tB %1$tY %1$r",cal));

This will give you date and time like- 12 January 2009 10:34:50 pm

For displaying other date and time formats,please refer to http://download.oracle.com/javase/1.5.0/docs/api/java/util/Formatter.html

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