轉自別人的jsp時間比較
阿新 • • 發佈:2018-12-11
endTime 是我資料欄位的名稱.為date型別
方法1:
<c:set var="currentTime" value="<%= new Date()%>"></c:set>
<c:if test="${currentTime.time > act.endTime.time}">
相關顯示....
</c:if>
說明:如果是date型別的話需要轉化為毫秒。 格式為 ${time1.time}
方法2:
<c:set var="currentTime" value="<%= System.currentTimeMillis()%>"></c:set>
<c:if test="${currentTime> act.endTime.time}">
相關顯示....
</c:if>
說明: 因為我設定的當前時間為毫秒值。所以直接可以用就行。
方法3:
<% request.setAttribute("currentTime", new Date()); %>
<c:if test="${currentTime> act.endTime.time}">
相關顯示....
</c:if>
---------------------
作者:有夢想的烏龜
來源:CSDN
原文:https://blog.csdn.net/nlbss/article/details/78700110
版權宣告:本文為博主原創文章,轉載請附上博文連結!