当前位置:  开发笔记 > 编程语言 > 正文

将System.currentTimeMillis()转换为当前可读时间

如何解决《将System.currentTimeMillis()转换为当前可读时间》经验,为你挑选了1个好方法。

嘿 - 有没有办法使用System.currentTimeMillis(); 将这个数字转化为基本输出HH:机器人中的MM?

我正在使用示例代码:

    Toast.makeText(this,
            String.valueOf(System.currentTimeMillis()),
            Toast.LENGTH_LONG).show();

从纪元开始,它输出MS中的当前时间.必须有一个更好的方法来做到这一点而不是转换那么大的数字并显示当前时间吗?



1> apps..:
SimpleDateFormat timingFormat = new SimpleDateFormat("hh:mm");
timingFormat.format(new Date());

推荐阅读
sx-March23
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有