原文链接:在JSP中如何使用JSTL(EL表达式)格式化日期
引用:
第1步:引入指令
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt " %>
第2步:使用
<1>日期
<fmt:formatDate value="${ user.lastConnectTime }" type="both" />
2010-8-11 15:43:59
<fmt:formatDate value="${ user.lastConnectTime }" type="date" dateStyle="default"/>
2010-8-11
<fmt:formatDate value="${ user.lastConnectTime }" type="date" dateStyle="short"/>
10-8-11
<fmt:formatDate value="${isoDate}" type="date" dateStyle="medium"/> 2010-8-11
<fmt:formatDate value="${isoDate}" type="date" dateStyle="long"/> 2010年8月11日
<fmt:formatDate value="${isoDate}" type="date" dateStyle="full"/> 2010年8月11日 星期三
<2>时间
<fmt:formatDate value="${isoDate}" type="time"/>
15:50:18
<fmt:formatDate value="${isoDate}" type="time" timeStyle="default"/>
16:03:12
<fmt:formatDate value="${isoDate}" type="time" timeStyle="short"/> 下午4:05
<fmt:formatDate value="${isoDate}" type="time" timeStyle="medium"/> 16:05:59
<fmt:formatDate value="${isoDate}" type="time" timeStyle="long"/> 下午04时06分21秒
<fmt:formatDate value="${isoDate}" type="time" timeStyle="full"/> 下午04时06分46秒 CST
<3>整合
<fmt:formatDate value="${date}" type="both" pattern="EEEE, MMMM d, yyyy HH:mm:ss "/> 星期三, 八月 11, 2010 16:08:04
<fmt:formatDate value="${isoDate}" type="both" pattern="d MMM yy, h:m:s a zzzz/>
11 八月 10, 4:9:14 下午 中国标准时间
如果以上都不行:
<script type="text/JavaScript"> var str='${h.createTime}'; document.write(str.split(" ")[0]);</script>
本文来自博客,转载请标明出处:http://blog.csdn.net/suqingdi/archive/2010/08/11/5804555.aspx