本文介绍了如何改造的currentTimeMillis为可读的日期格式?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想用的currentTimeMillis
两次,这样我就可以计算时间,但我也想显示时间和日期在用户可读的格式。我无法为的currentTimeMillis
是良好的计算中,但我看不到一个内置的功能转换为漂亮的时间或时间/日期。
I want to use currentTimeMillis
twice so I can calculate a duration but I also want to display time and date in user readable format. I'm having trouble as currentTimeMillis
is good for the caculation but I can't see a built in function to convert to nice time or time/date.
我用
android.text.format.DateFormat df = new android.text.format.DateFormat();
df.format("yyyy-MM-dd kk:mm:ss", new java.util.Date());
生产好的时间和日期,我想ultimetly喜欢做的是推我得到的的currentTimeMillis
值到 android.text.format .DateFormat DF =新android.text.format.DateFormat();
例如。
android.text.format.DateFormat df = currentTimeMillis();
当我尝试,我得到
类型不匹配:无法从长转换为日期格式
我试图用一些铸造,但不能看到如何做到这一点。
I've tried to use some casting but can't see how to accomplish this.
推荐答案
这会工作。
long yourmilliseconds = System.currentTimeMillis();
SimpleDateFormat sdf = new SimpleDateFormat("MMM dd,yyyy HH:mm");
Date resultdate = new Date(yourmilliseconds);
System.out.println(sdf.format(resultdate));
这篇关于如何改造的currentTimeMillis为可读的日期格式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!