how to get a formatted date as milliseconds?

Reyjohn picture Reyjohn · Jul 11, 2012 · Viewed 23.6k times · Source

I have a formatted date from sqllite database, to use this in a graph view I need to format it in a long number.

The format is:

2012-07-11 10:55:21

how can I convert it to milliseconds?

Answer

gkris picture gkris · Jul 11, 2012

You can convert the string into a Date object using this code:-

Date d = DateFormat.parse(String s)

And then convert it into milliseconds by using the inbuilt method

long millisec = d.getTime();