Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 JSP 页面上打印自纪元以来的时间戳。到目前为止,我有:
<jsp:useBean id="now" class="java.util.Date" /> <fmt:formatDate value="${now}"/>
这样做的问题是我的默认输出formatDate May 29, 2013和可用的语法pattern似乎没有像strftime的任何东西%s。
formatDate
May 29, 2013
pattern
%s
在 JSP 中以秒或毫秒为单位获取时间戳的最简单方法是什么?
只要打电话Date#getTime()。它以毫秒为单位返回纪元时间。
Date#getTime()
${now.time}
或者,如果您想在几秒钟内完成,
${now.time / 1000}