Convert date and time to milliseconds in Android

前端 未结 4 1826
孤城傲影
孤城傲影 2021-01-03 20:31

I have Date and Time from DatePicker and TimePicker. Now i want to change the s

4条回答
  •  情话喂你
    2021-01-03 20:38

    The getTime() method of the Date class returns a long with the time in milliseconds.

    http://developer.android.com/reference/java/util/Date.html

    So if you have a Date object somewhere like:

    Date date;
    

    You can do:

    System.out.println(date.getTime());
    

    And it will print out the time in milliseconds.

提交回复
热议问题