首页 > 代码库 > fmt标签的使用
fmt标签的使用
fmt标签:
国际化核心标签:<fmt:setLocale>、<fmt:bundle>、<fmt:setBundle>、<fmt:message>、<fmt:param>、<fmt:requestEncoding>
格式化标签:<fmt:timeZone>、<fmt:setTimeZone>、<fmt:formatNumber>、<fmt:parseNumber>、<fmt:formatDate>、<fmt:parseDate>
使用时间格式化标签方法-----------------------
第一步:导入<%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt" %>在jsp页面
第二部:时间格式化
格式一:< fmt:formatDate value="http://www.mamicode.com/${date}" type="both"/> 显示格式:2004-4-1 13:30:00
格式二:<fmt:formatDate value="http://www.mamicode.com/${date}" type="date"/> 显示格式:2004-4-1
<fmt:formatDate value="http://www.mamicode.com/${isoDate}" type="date" dateStyle="default"/> 显示格式:2004-5-31
<fmt:formatDate value="http://www.mamicode.com/${isoDate}" type="date" dateStyle="short"/> 显示格式:04-5-31
<fmt:formatDate value="http://www.mamicode.com/${isoDate}" type="date" dateStyle="medium"/> 显示格式:2004-5-31
<fmt:formatDate value="http://www.mamicode.com/${isoDate}" type="date" dateStyle="long"/> 显示格式:2004年5月31日
<fmt:formatDate value="http://www.mamicode.com/${isoDate}" type="date" dateStyle="full"/> 显示格式:2004年5月31日星期一
格式三:<fmt:formatDate value="http://www.mamicode.com/${isoDate}" type="time"/> 显示格式:23:59:59
<fmt:formatDate value="http://www.mamicode.com/${isoDate}" type="time" timeStyle="default"/> 显示格式:23:59:59
<fmt:formatDate value="http://www.mamicode.com/${isoDate}" type="time" timeStyle="short"/> 显示格式:下午11:59
<fmt:formatDate value="http://www.mamicode.com/${isoDate}" type="time" timeStyle="medium"/> 显示格式:23:59:59
<fmt:formatDate value="http://www.mamicode.com/${isoDate}" type="time" timeStyle="long"/> 显示格式:下午11时59分59秒
<fmt:formatDate value="http://www.mamicode.com/${isoDate}" type="time" timeStyle="full"/> 显示格式:下午11时59分59秒 CDT
格式四:
<fmt:formatDate value="http://www.mamicode.com/${date}" type="both" pattern="EEEE, MMMM d, yyyy HH:mm:ss Z"/>
显示格式:星期四, 四月 1, 2004 :30:00 0600
<fmt:formatDate value="http://www.mamicode.com/${isoDate}" type="both" pattern="d MMM yy, h:m:s a zzzz/>
显示格式:日 月 年,小时:分钟:秒
<fmt:formatDate value="http://www.mamicode.com/${这里可以放日期和字符串}" pattern="yyyy年MM月dd日"/>
显示格式:2004年5月31日