LA_
LA_

Reputation: 20429

How to convert Time to Long?

For ex., I have the following value:

Time.valueOf("2:00:00")

how should I convert it to Long? (to be stored in SQLite database as Real)

java.sql.Time is used.

Upvotes: 4

Views: 21166

Answers (1)

MByD
MByD

Reputation: 137412

Use getTime():

Time t = Time.valueOf("2:00:00");
long l = t.getTime();

Upvotes: 17

Related Questions