Android convert date and time to milliseconds

后端 未结 10 2177
长发绾君心
长发绾君心 2020-11-28 12:05

I have one date and time format as below:

Tue Apr 23 16:08:28 GMT+05:30 2013

I want to convert into milliseconds, but I actually dont know

10条回答
  •  清酒与你
    2020-11-28 12:19

    Just to complement the given answers, if you need to convert the time given by the date to other time units you can use the TimeUnit API

    Example:

    TimeUnit.MILLISECONDS.toMinutes(millis)
    

提交回复
热议问题