Android: how to get the number of milliseconds since January 1st 1970 for a defined date?

StackOverflow https://stackoverflow.com/questions/7652955

  •  06-02-2021
  •  | 
  •  

I have seen this post which explains how to get the number of milliseconds since 1970 for the CURRENT DATE:

how to get the number of seconds passed since 1970 for a date value?

My question is: how to get this value in milliseconds for any date ?

Thanks !!

有帮助吗?

解决方案

Calendar c = new Calendar();

Calendar c = Calendar.getInstance();
// year, month, day, hourOfDay, minute
c.set(1990, 7, 12, 9, 34);
long millis = c.getTimeInMillis();
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top