fmt:formatDate标签的输出格式

<fmt:formatDate>标签的输出格式:
  d   月中的某一天。一位数的日期没有前导零。
  dd   月中的某一天。一位数的日期有一个前导零。
  ddd   周中某天的缩写名称,在   AbbreviatedDayNames   中定义。
  dddd   周中某天的完整名称,在   DayNames   中定义。
  M   月份数字。一位数的月份没有前导零。
  MM   月份数字。一位数的月份有一个前导零。
  MMM   月份的缩写名称,在   AbbreviatedMonthNames   中定义。
  MMMM   月份的完整名称,在   MonthNames   中定义。
  y   不包含纪元的年份。如果不包含纪元的年份小于   10,则显示不具有前导零的年份。
  yy   不包含纪元的年份。如果不包含纪元的年份小于   10,则显示具有前导零的年份。
  yyyy   包括纪元的四位数的年份。
  gg   时期或纪元。如果要设置格式的日期不具有关联的时期或纪元字符串,则忽略该模式。
  h   12   小时制的小时。一位数的小时数没有前导零。从1到12,分上下午 范围:01:00 AM~12:59AM
  hh   12   小时制的小时。一位数的小时数有前导零。
  H   24   小时制的小时。一位数的小时数没有前导零。从0到23,范围:00:00 AM~23:59AM
  HH   24   小时制的小时。一位数的小时数有前导零。
  m   分钟。一位数的分钟数没有前导零。
  mm   分钟。一位数的分钟数有一个前导零。
  s   秒。一位数的秒数没有前导零。
  ss   秒。一位数的秒数有一个前导零。

  示例:index.jsp

{type:both}  <fmt:formatDate value="<%=new Date() %>" type="both"/><!-- 2011-3-30 9:41:21 -->
<br/>
{type:date}  <fmt:formatDate value="<%=new Date() %>" type="date"/><!-- 2011-3-30 -->
<br/>
{type:time}  <fmt:formatDate value="<%=new Date() %>" type="time"/><!-- 9:44:44 -->
<br/>
{type:date, dateStyle:default}  <fmt:formatDate value="<%=new Date() %>" type="date" dateStyle="default"/><!-- 2011-3-30 -->
<br/>
{type:date, dateStyle:short}  <fmt:formatDate value="<%=new Date() %>" type="date" dateStyle="short"/><!-- 11-3-30  -->
<br/>
{type:date, dateStyle:medium}  <fmt:formatDate value="<%=new Date() %>" type="date" dateStyle="medium"/><!-- 2011-3-30 -->
<br/>
{type:date, dateStyle:long}  <fmt:formatDate value="<%=new Date() %>" type="date" dateStyle="long"/><!-- 2011年3月30日 -->
<br/>
{type:date, dateStyle:full}  <fmt:formatDate value="<%=new Date() %>" type="date" dateStyle="full"/><!-- 2011年3月30日 星期三 -->
 <br/>
{type:time, timeStyle:default}  <fmt:formatDate value="<%=new Date() %>" type="time" timeStyle="default"/><!-- 10:01:32  -->
<br/>
{type:time, timeStyle:short}  <fmt:formatDate value="<%=new Date() %>" type="time" timeStyle="short"/><!-- 上午10:01  -->
<br/>
{type:time, timeStyle:medium}  <fmt:formatDate value="<%=new Date() %>" type="time" timeStyle="medium"/><!-- 10:01:32 -->
<br/>
{type:time, timeStyle:long}  <fmt:formatDate value="<%=new Date() %>" type="time" timeStyle="long"/><!-- 上午10时01分32秒 -->
<br/>
{type:time, timeStyle:full}  <fmt:formatDate value="<%=new Date() %>" type="time" timeStyle="full"/><!-- 上午10时01分32秒 CST  -->
<br/>
{type:both, pattern:EEEE, MMMM d, yyyy HH:mm:ss Z}  <fmt:formatDate value="<%=new Date() %>" type="both" pattern="EEEE, MMMM d, yyyy HH:mm:ss Z"/><!-- 星期三, 三月 30, 2011 10:01:32 +0800  -->
<br/>
{type:both, pattern:d MMM yy, h:m:s a zzzz}  <fmt:formatDate value="<%=new Date() %>" type="both" pattern="d MMM yy, h:m:s a zzzz"/><!-- 30 三月 11, 10:1:32 上午 中国标准时间 -->
<br/>
{pattern:dd/MM/yyyy HH:mm aa}}  <fmt:formatDate value="<%=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").parse("2011-3-30 13:12:12") %>" pattern="dd/MM/yyyy HH:mm aa"/><!-- 30/03/2011 13:12 下午 -->
<br/>
{pattern:dd/MM/yyyy hh:mm aa}  <fmt:formatDate value="<%=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").parse("2011-3-30 13:12:12") %>" pattern="dd/MM/yyyy hh:mm aa"/><!-- 30/03/2011 01:12 下午 -->

  

时间: 2024-10-15 21:06:02

fmt:formatDate标签的输出格式的相关文章

&lt;fmt:formatDate&gt;标签的输出格式:

<fmt:formatDate>标签的输出格式:  d   月中的某一天.一位数的日期没有前导零.      dd   月中的某一天.一位数的日期有一个前导零.      ddd   周中某天的缩写名称,在   AbbreviatedDayNames   中定义.      dddd   周中某天的完整名称,在   DayNames   中定义.      M   月份数字.一位数的月份没有前导零.      MM   月份数字.一位数的月份有一个前导零.      MMM   月份的缩写名称

&lt;fmt:formatDate /&gt;标签的输出格式

jsp加载页面显示日期格式: <fmt:formatDate value="${m.createTime}" type="both" dateStyle="long" /> ---->2016年12月1日 11:04:24 jsp编辑页面显示日期格式:yyyy-MM-dd <input type="text" id="endTime"  class="easyui-date

(2)JSTL的fmt国际化标签库

format标签库:做国际化格式化,分两类 : 国际化核心标签:<fmt:setLocale>.<fmt:bundle>.<fmt:setBundle>.<fmt:message>.<fmt:param>.<fmt:requestEncoding> 格式化标签:<fmt:timeZone>.<fmt:setTimeZone>.<fmt:formatNumber>.<fmt:parseNumbe

JSTL标签之&lt;fmt:formatDate/&gt;使用介绍

一. 使用示例 <fmt:formatDate value="${myDate}" type="both"/>                                        2004-5-31 23:59:59 <fmt:formatDate value="${myDate}" type="date"/>                                        20

fmt:formatDate的输出格式

 起止时间:    <input type="text" name="special.startDateTime" id ="datetimepicker1"  value="<fmt:formatDate value="${special.startDateTime}" type="both"/>" data-date-format="yyyy-mm-dd 

fmt:formatDate的输出格式详解

<fmt:formatDate value="${isoDate}" type="both"/> 2004-5-31 23:59:59 <fmt:formatDate value="${date}" type="date"/> 2004-4-1 <fmt:formatDate value="${isoDate}" type="time"/> 23:59

jstl标签的fmt:formatDate格式化日期 String to Date

之前我的一篇博客中: 写到过如何将后台日期类型转换在前台显示,今天我在用其中的第四种方法 <fmt:formatDate value="&{diary.releaseDate}" type="date" pattern="yyyy-MM-dd"/> 却出现:Unable to convert string "&{diary.releaseDate}" to class "java.util

&lt;fmt:formatDate &gt;失效 原因

<fmt:parseDate value="${abc}" pattern="yyyy-MM-dd HH:mm" var="change"/> <fmt:formatDate value="${change}" pattern="yyyy-MM-dd HH:mm"/> 标签失效 原因 引错包 <%@ taglib prefix="fmt" uri="

&lt;fmt:formatDate/&gt;格式化日期

<%@ page language="java" contentType="text/html; charset=UTF-8"%><%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%><%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="