简体   繁体   中英

How do I get a Unix Timestamp in Clojure?

I want to know what the current timestamp is. The best I can do thus far is define my own function that does this:

(int (/ (.getTime (java.util.Date.)) 1000))

Is there a standard function for fetching the Unix timestamp with clojure?

Pretty much all JVM-based timestamp mechanisms measure time as milliseconds since the epoch - so no, nothing standard** that will give seconds since epoch.

Your function can be slightly simplified as:

(quot (System/currentTimeMillis) 1000)

** Joda might have something like this, but pulling in a third-party library for this seems like overkill.

I'd go with clj-time , the standard Clojure library for dealing with times and dates (wrapping Joda-Time ). Yes, it is an extra dependency for a simple need and may be overkill if you really only want the current timestamp; even then it's just a nice convenience at virtually no cost. And if you do eventually come to need additional time-related functionality, then it'll be there with a great implementation of all the basics.

As for the code, here's the Leiningen dependency specifier for the current release:

[clj-time "0.5.1"]

And here's a snippet for getting the current timestamp:

(require '[clj-time.core :as time]
         '[clj-time.coerce :as tc])

;; milliseconds since Unix epoch
(tc/to-long (time/now))

;; also works, as it would with other JVM date and time classes
(tc/to-long (java.util.Date.))
(defn unix-time-real
  "Taken from
  System/currentTimeMillis."
  []
  (/ (System/currentTimeMillis) 1000))

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM