如何将currentTimeMillis转换为可读的日期格式?[重复]

我想使用currentTimeMillis两次,所以我可以计算持续时间,但我也想以用户可读的格式显示时间和日期。我currentTimeMillis在计算方面遇到了麻烦,但看不到内置函数可以转换为漂亮的时间或时间/日期。

我用

android.text.format.DateFormat df = new android.text.format.DateFormat();

df.format("yyyy-MM-dd kk:mm:ss", new java.util.Date());

产生美好的时间和日期,而我最终想要做的是将我产生的currentTimeMillis价值展示给android.text.format.DateFormat df = new android.text.format.DateFormat();

例如

android.text.format.DateFormat df = currentTimeMillis();

当我尝试时

类型不匹配:无法从long转换为DateFormat

我尝试使用一些强制转换,但看不到如何实现。

回答:

它将起作用。

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转换为可读的日期格式?[重复] 的全部内容, 来源链接: utcz.com/qa/408714.html

回到顶部