The clj-time.coerce library can help converting other date-time formats to joda time format (clj-time.core/date-time). The other formats include Java long format, String, Date, SQL Date.
To convert time from other time formats, include the library and use the from- function, e.g.
(require '[clj-ti...