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