I have to an android application in which I need to convert the current date to the number of seconds passed since 1970.
What I am doing currently i
System.currentTimeMillis() gives you the number of milliseconds since the Unix epoch (January 1, 1970 00:00:00 UTC).
Divide it by 1000 to get the number of seconds.