<fmt:> 格式 化标签库

==========================================================================

一:JSTL格式化标签又称为I18N标签库,主要用来编写国际化的WEB应用,使用此功能可以对一个特定的语言请求做出合适的处理。

例如:中国内地用户将显示简体中文,台湾地区则显示繁体中文,使用I18N格式化标签库还可以格式化数字和日期,例如同一数字或日趋,在不同国家可能有不同的格式,使用I18N格式标签库可以将数字和日期格式为当地的格式。

在JSP页面中要使用到格式化标签,需要引入下面的语句:
<%@ taglib uri=" http://java.sun.com/jsp/jstl/fmt " prefix="fmt"% >

二:概览

-------------------------------------------------------------------
格式化标签
<fmt:fromatNumber>
<fmt:formatDate>
<fmt:parseDate>
<fmt:parseNumber>
<fmt:setTimeZone>
<fmt:timeZone>

国际化标签
<fmt:setLocale>
<fmt:requestEncoding>
<fmt:bundle>
<fmt:message>
<fmt:param>
<fmt:setBundle>

3.1 bundle

<fmt:bundle>  标签:用于资源配置文件的数据来源, 标签将资源配置文件绑定于它标签体中的显示属性描述basename:资源配置文件的指定,只需要指定文件名而无须扩展名prefix:前置关键字如:资源文件中配置的数据为:label.backcolor=#FFFlabel.fontcolor=#000则,可以用如下方法取得label的backcolor和fontcolor值:    <fmt:bundle basename="MyResourse" prefix="label.">         <fmt:message key="backcolor" />        <fmt:message key="fontcolor" />    </fmt:bundle>

3.2 formatDate

<fmt:formatDate>标签:用于格式化日期 属性描述value:格式化的日期,该属性的内容应该是 java.util.Date 类型的实例type:格式化的类型pattern:格式化模式var:结果保存变量scope:变量的作用范围timeZone:指定格式化日期的时区

3.3 formatNumber

<fmt:formatNumber>标签:用于格式化数字 属性描述 value:格式化的数字,该数值可以是 String 类型或 java.lang.Number 类型的实例 type:格式化的类型,可能值包括:currency(货币)、number(数字)和percent(百分比)pattern:格式化模式 var:结果保存变量 scope:变量的作用范围 maxIntegerDigits:指定格式化结果的最大值 minIntegerDigits:指定格式化结果的最小值 maxFractionDigits:指定格式化结果的最大值,带小数 minFractionDigits:指定格式化结果的最小值,带小数 如:    结果将被保存在" money "变量中,将根据 Locale 环境显示当地的货币格式        <fmt:formatNumber value="1000.888" type="currency" var="money"/>

3.4 message

<fmt:message> 标签:用于显示资源配置文件信息(该资源文件必须遵循如下格式:1.扩展名必须为properties,2.文件的内容必须依照key = value的格式;3.文件要放到WEB-INF/classes目录下) 属性描述 key:资源配置文件的"键"指定 bundle:若使用 <fmt:setBundle> 保存了资源配置文件,该属性就可以从保存的资源配置文件中进行查找 var:将显示信息保存为一个变量 scope:变量的作用范围 如:1)用<fmt:setBundle>标签将"applicationMessage"资源配置文件被赋于了变量"applicationBundle"    用<fmt:message>标签显示由<fmt:setBundle>标签保存的资源配置文件中"键"为"passWord"的信息            <fmt:setBundle basename="applicationMessage" var="applicationBundle"/>         <fmt:message key="passWord" bundle="${applicationBundle}" />2)用<fmt:bundle>标签定义的"applicationAllMessage"资源配置文件作用于其标签体内的显示    用<fmt:message>标签显示"applicationAllMessage"资源配置文件中"键"为"userName"的信息        <fmt:bundle basename="applicationAllMessage">             <fmt:message key="userName" />        </fmt:bundle>

3.5 param

<fmt:param> 标签:用于参数传递 <fmt:param>标签应该位于 <fmt:message> 标签内,将为该消息标签提供参数值。它只有一个属性value 如:在MyResourse.properties文件中,有一个索引值如下(其中,{0}代表占位符):Str2=Hi,{0} 则,使用<fmt:param>标签传入值如下:    <fmt:bundle basename="MyResourse">         <fmt:message key="Str2">            <fmt:param value="张三" />        </fmt:message>    </fmt:bundle>也可以在资源文件中指定参数的类型:如:在MyResourse.properties文件中,有一个索引值如下:Str3={0,date}则,使用<fmt:param>标签传入值如下:    <% request.setAttribute("now",new Date()); %>    <fmt:bundle basename="MyResourse">         <fmt:message key="Str3">            <fmt:param value="${now}" />        </fmt:message>    </fmt:bundle>

3.6 parseDate

<fmt:parseDate>标签:用于解析日期 属性描述 value:将被解析的字符串 type:解析格式化的类型 pattern:解析格式化模式 var:结果保存变量,类型为 java.lang.Date scope:变量的作用范围 parseLocale:以本地化的形式来解析字符串,该属性的内容为 String 或 java.util.Locale 类型的实例 timeZone:指定解析格式化日期的时区

3.7 parseNumber

<fmt:parseNumber> 标签:用于解析数字 属性描述 value:将被解析的字符串 type:解析格式化的类型 pattern:解析格式化模式 var:结果保存变量,类型为 java.lang.Number scope:变量的作用范围 parseLocale:以本地化的形式来解析字符串,该属性的内容应为 String 或 java.util.Locale 类型的实例 如:    将"15%"转换为数字        <fmt:parseNumber value="15%" type="percent" var="num"/>

3.8 requestEncoding

<fmt:requestEncoding>标签:用于为请求设置字符编码 它只有一个属性 value ,在该属性中可以定义字符编码。 如:    <fmt:requestEncoding value="GB2312"/>

3.9 setBundle

<fmt:bundle> 、 <fmt:setBundle> 标签:用于资源配置文件的数据来源, 标签则允许将资源配置文件保存为一个变量,在之后的工作可以根据该变量来进行属性描述 ,二组标签共有的属性 var:<fmt:setBundle> 独有的属性,用于保存资源配置文件为一个变量 scope:变量的作用范围 如:    查找一个名为 applicationMessage_zh_CN.properties 的资源配置文件,来作为显示的 Resource 绑定    <fmt:setBundle basename="applicationMessage" var="applicationBundle"/>

3.10 setLocale

<fmt:setLocale>标签:用于设置本地化环境 属性描述 value:Locale 环境的指定,可以是 java.util.Locale 或 String 类型的实例 scope:Locale 环境变量的作用范围(可选) 如:    设置本地环境为繁体中文    <fmt:setLocale value="zh_TW"/>    设置本地环境为简体中文    <fmt:setLocale value="zh_CN"/>

3.11 setTimeZone

<fmt:setTimeZone> 标签则允许将时区设置保存为一个变量,在之后的工作可以根据该变量来进行 属性描述   value:时区的设置   var:<fmt:setTimeZone> 独有的属性,用于保存时区为一个变量 scope:变量的作用范围

3.12 timeZone

<fmt:timeZone> 标签将使得在其标签体内的工作可以使用该时区设置属性描述 value:时区的设置 var:<fmt:setTimeZone> 独有的属性,用于保存时区为一个变量 scope:变量的作用范围

三:<fmt:formatNumber>

-------------------------------------------------------------------
此标签会根据区域定制的方式将数字格式化成数字,货币,百分比。
此标签的属性:
value:要格式化的数字
type:按照什么类型格式化
pattern:自定义格式化样式
currencyCode:ISO-4721货币代码,只适用于按照货币格式化的数字
currencySymbol: 货币符号,如¥,只适用于按照货币格式化的数字
groupingUsed: 是否包含分隔符
maxIntegerDigits: 整数部分最多显示多少位
mixIntegerDigits: 整数部分最少显示多少位
maxFractionDigits: 小数部分最多显示多位位
minFractionDigits: 小数部分最少显示多位位
var:存储格式化后的结果
scope: 存储的范围

示例1:

Java代码
<%@ page language="java" pageEncoding="utf-8"%>
<%@ taglib uri=" http://java.sun.com/jsp/jstl/core " prefix="c"%>
<%@ taglib uri=" http://java.sun.com/jsp/jstl/fmt " prefix="fmt" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>chapter4.jsp</title>
</head>
<body>
<div>
<div>
<fmt:setLocale value="fr_fr"/>
<fmt:formatNumber value="123456789.012"/>
<br/>
<fmt:setLocale value="zh_cn"/>
<fmt:formatNumber value="123456789.012"/>
<br />
<fmt:setLocale value="de_de"/>
<fmt:formatNumber value="123456789.012"/>
<br />
</div>
</div>
</body>
</html>

<%@ page language="java" pageEncoding="utf-8"%>
<%@ taglib uri=" http://java.sun.com/jsp/jstl/core " prefix="c"%>
<%@ taglib uri=" http://java.sun.com/jsp/jstl/fmt " prefix="fmt" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>chapter4.jsp</title>
</head>
<body>
<div>
<div>
<fmt:setLocale value="fr_fr"/>
<fmt:formatNumber value="123456789.012"/>
<br/>
<fmt:setLocale value="zh_cn"/>
<fmt:formatNumber value="123456789.012"/>
<br />
<fmt:setLocale value="de_de"/>
<fmt:formatNumber value="123456789.012"/>
<br />
</div>
</div>
</body>
</html>    注意:如果要实现国际化,那么编码格式要设置为utf-8.
从程序运行效果可以看出,设定的区域不同,格式化数字的显示也会不同.



四:type属性:可以是数字(number),货币(currency),百分比(percent)

示例2:

Java代码
<%@ page language="java" pageEncoding="utf-8"%>
<%@ taglib uri=" http://java.sun.com/jsp/jstl/core " prefix="c"%>
<%@ taglib uri=" http://java.sun.com/jsp/jstl/fmt " prefix="fmt" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>chapter4.jsp</title>
</head>
<body>
<div>
<div>
<fmt:setLocale value="zh_cn"/>
<fmt:formatNumber value="0.3" type="number"/><br />
<fmt:formatNumber value="0.3" type="currency"/><br />
<fmt:formatNumber value="0.3" type="percent"/><br />
</div>
</div>
</body>
</html>

<%@ page language="java" pageEncoding="utf-8"%>
<%@ taglib uri=" http://java.sun.com/jsp/jstl/core " prefix="c"%>
<%@ taglib uri=" http://java.sun.com/jsp/jstl/fmt " prefix="fmt" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>chapter4.jsp</title>
</head>
<body>
<div>
<div>
<fmt:setLocale value="zh_cn"/>
<fmt:formatNumber value="0.3" type="number"/><br />
<fmt:formatNumber value="0.3" type="currency"/><br />
<fmt:formatNumber value="0.3" type="percent"/><br />
</div>
</div>
</body>
</html>     currencyCode为货币代码,例如美元为USD,人民币为CNY等
currencySymbol为货币符号例如,人民币为¥,美元为$。

如果不指定区域,则会根据语言区域自动选择currencySymbol

示例3:

Java代码
<%@ page language="java" pageEncoding="utf-8"%>
<%@ taglib uri=" http://java.sun.com/jsp/jstl/core " prefix="c"%>
<%@ taglib uri=" http://java.sun.com/jsp/jstl/fmt " prefix="fmt" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>chapter4.jsp</title>
</head>
<body>
<div>
<div>
<fmt:setLocale value="zh_cn"/>
<fmt:formatNumber value="0.3" type="currency"/><br />
<fmt:setLocale value="en_Us"/>
<fmt:formatNumber value="0.3" type="currency"/><br />
</div>
</div>
</body>
</html>

<%@ page language="java" pageEncoding="utf-8"%>
<%@ taglib uri=" http://java.sun.com/jsp/jstl/core " prefix="c"%>
<%@ taglib uri=" http://java.sun.com/jsp/jstl/fmt " prefix="fmt" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>chapter4.jsp</title>
</head>
<body>
<div>
<div>
<fmt:setLocale value="zh_cn"/>
<fmt:formatNumber value="0.3" type="currency"/><br />
<fmt:setLocale value="en_Us"/>
<fmt:formatNumber value="0.3" type="currency"/><br />
</div>
</div>
</body>
</html>

currencySymbol属性还可以自定义要显示的头标识,但是一定得type="currency"才会生效,例如:

Java代码
<%@ page language="java" pageEncoding="utf-8"%>
<%@ taglib uri=" http://java.sun.com/jsp/jstl/core " prefix="c"%>
<%@ taglib uri=" http://java.sun.com/jsp/jstl/fmt " prefix="fmt" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>chapter4.jsp</title>
</head>
<body>
<div>
<div>
<fmt:setLocale value="zh_cn"/>
<fmt:formatNumber value="0.3" type="currency" currencySymbol="#"/><br />
<fmt:setLocale value="en_Us"/>
<fmt:formatNumber value="0.3" type="currency" currencySymbol="#"/><br />
</div>
</div>
</body>
</html>

<%@ page language="java" pageEncoding="utf-8"%>
<%@ taglib uri=" http://java.sun.com/jsp/jstl/core " prefix="c"%>
<%@ taglib uri=" http://java.sun.com/jsp/jstl/fmt " prefix="fmt" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>chapter4.jsp</title>
</head>
<body>
<div>
<div>
<fmt:setLocale value="zh_cn"/>
<fmt:formatNumber value="0.3" type="currency" currencySymbol="#"/><br />
<fmt:setLocale value="en_Us"/>
<fmt:formatNumber value="0.3" type="currency" currencySymbol="#"/><br />
</div>
</div>
</body>
</html>

自定义数字样式
<fmt:formatNumber value="12.31" pattern=".0000"/><br/>
<fmt:formatNumber value="1234" pattern="###.##E0"/>
会显示:
12.3100
1.234E3
会四舍五入

var:定义一个变量,存储格式化后的结果,scope指定变量存储的范围.用法和前面讲的标签一致.



五:<fmt:parseNumber>
-------------------------------------------------------------------
此标签用来将字符串类型的数字,货币或百分比转换成数字类型,和<fmt:formatNumber>标签的作用正好相反.

value: 要转换的字符串
type: 指定要转换的字符串为什么类型,可取值:number,percent,currency
pattern: 自定义格式化样式
parseLocale: 指定区域来转换字符串
IntegerOnly:  转换后的数字是否只显示整数部分
var:  存储转换后的结果
scope: 存储的范围

示例1:
<fmt:parseNumber value="500,800,200"/>
显示: 500800200

示例2:
<fmt:parseNumber value="52%" type="percent" />
显示: 0.52 (52%在这里是一个字符串, type指定这个字符串是什么类型的值)

示例3:
<fmt:parseNumber value="¥123" type="currency" />
显示123, ¥123在这里是一个字符串, type指定这个字符串是什么类型的值

示例4:
<fmt:parseNumber value="123.333" type="number" /><br/>
<fmt:parseNumber value="123.333" type="number"  integerOnly="true"/><br/>
显示:
123.333
123
integerOnly确定是否只显示整数部分.

示例5:
<fmt:parseNumber value="¥123.333" type="currency" parseLocale="zh_CN"/><br/>
<fmt:parseNumber value="$123.333" type="currency" parseLocale="en_US"/><br/>
parseLocale="en_US"主要是配合当type="currency"时用的,
如果要转换货币的字符串类型为value="¥123.333",不设置语言环境的话,会取当前浏览器的默认设置,否则就要加上parseLocale="zh_CN",指定环境为中文环境
如果要转换货币的字符串类型为value="$123.333",不设置语言环境的话,会取当前浏览器的默认设置,如果默认为zh_cn的话,程序会报错的,否则就要加上parseLocale="en_US",指定环境为英文美国环境

六:<fmt:formatDate />
-------------------------------------------------------------------
此标签可以将日期格式化.
属性介绍:
value 用来格式化的时间或日期
type 指定格式化的是日期还是时间,或者两者都是取值范围:date,time,both
pattern 自定义格式化样式
dateStyle 日期的格式化样式
timeStyle 时间的格式化样式
timeZone 指定使用的时区
var 存储格式化后的结果
scope 指定存储的范围

自定义格式:

--------------------------
Java代码
<fmt:setLocale value="zh_cn" />
<fmt:formatDate value="<%=new Date()%>" type="both" pattern="yyyy/MM/dd hh:mm:ss" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="both" pattern="yyyy-MM-dd HH:mm:ss" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="both" pattern="yyyy年MM月dd日 hh小时mm分钟ss秒" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="both" pattern="yy/MM/dd hh:mm:ss" />
<br />

<fmt:setLocale value="zh_cn" />
<fmt:formatDate value="<%=new Date()%>" type="both" pattern="yyyy/MM/dd hh:mm:ss" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="both" pattern="yyyy-MM-dd HH:mm:ss" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="both" pattern="yyyy年MM月dd日 hh小时mm分钟ss秒" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="both" pattern="yy/MM/dd hh:mm:ss" />
<br />     注意这里小时 hh表示12小时制, HH代表24小时制


示例1:
--------------------------
Java代码
<fmt:setLocale value="zh_cn" />
<fmt:formatDate value="<%=new Date()%>" />
<br />
<fmt:setLocale value="zh_tw" />
<fmt:formatDate value="<%=new Date()%>" />

<fmt:setLocale value="zh_cn" />
<fmt:formatDate value="<%=new Date()%>" />
<br />
<fmt:setLocale value="zh_tw" />
<fmt:formatDate value="<%=new Date()%>" />
大家可以看到大陆和台湾显示日期的格式是有区别的.

显示结果:
2009-12-7
2009/12/7

示例2:
--------------------------
Java代码
<fmt:setLocale value="zh_cn" />
<fmt:formatDate value="<%=new Date()%>" type="time"/>
<br />
<fmt:setLocale value="zh_tw" />
<fmt:formatDate value="<%=new Date()%>" type="time"/>

<fmt:setLocale value="zh_cn" />
<fmt:formatDate value="<%=new Date()%>" type="time"/>
<br />
<fmt:setLocale value="zh_tw" />
<fmt:formatDate value="<%=new Date()%>" type="time"/>
显示结果:
14:59:28
下午 02:59:28

type可取值及意义:
date 格式化日期
time格式化时间
both格式化日期时间

示例3:

--------------------------
Java代码
<fmt:setLocale value="zh_cn" />
<fmt:formatDate value="<%=new Date()%>" type="both" />
<br />
<fmt:setLocale value="zh_tw" />
<fmt:formatDate value="<%=new Date()%>" type="both" />

<fmt:setLocale value="zh_cn" />
<fmt:formatDate value="<%=new Date()%>" type="both" />
<br />
<fmt:setLocale value="zh_tw" />
<fmt:formatDate value="<%=new Date()%>" type="both" />
输出结果:
2009-12-7 21:24:26
2009/12/7 下午 09:24:26

dateStyle用来设定日期显示的样式,其值可以是default, short, medium, long, full,请看示例:
--------------------------
Java代码
<fmt:setLocale value="zh_cn" />
<fmt:formatDate value="<%=new Date()%>" type="both" dateStyle="default" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="both" dateStyle="short" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="both" dateStyle="medium" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="both" dateStyle="long" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="both" dateStyle="full" />
<br />

<fmt:setLocale value="zh_cn" />
<fmt:formatDate value="<%=new Date()%>" type="both" dateStyle="default" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="both" dateStyle="short" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="both" dateStyle="medium" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="both" dateStyle="long" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="both" dateStyle="full" />
<br />
显示结果如下:
2009-12-7 21:30:49
09-12-7 21:30:49
2009-12-7 21:30:49
2009年12月7日 21:30:49
2009年12月7日 星期一 21:30:49
可以看到dateStyle属性只对日期部分起作用,时间部分没有作用.

timeStyle用来显示时间部分的样式,取值范围同上
--------------------------
Java代码
<fmt:setLocale value="zh_cn" />
<fmt:formatDate value="<%=new Date()%>" type="both"    timeStyle="default" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="both" timeStyle="short" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="both" timeStyle="medium" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="both" timeStyle="long" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="both" timeStyle="full" />
<br />

<fmt:setLocale value="zh_cn" />
<fmt:formatDate value="<%=new Date()%>" type="both"    timeStyle="default" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="both" timeStyle="short" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="both" timeStyle="medium" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="both" timeStyle="long" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="both" timeStyle="full" />
<br />
输出:
2009-12-7 21:35:52
2009-12-7 下午9:35
2009-12-7 21:35:52
2009-12-7 下午09时35分52秒
2009-12-7 下午09时35分52秒 CST

timeZone用来设定时区,时区的意思类似于酒店里大堂放的几个时钟,比如现在时间会有北京时间,东京时间,纽约时间,伦墩时间,
取值范围为:EST, CST, MST, PST
--------------------------
Java代码
<fmt:setLocale value="zh_cn" />
<fmt:formatDate value="<%=new Date()%>" type="time" timeStyle="full" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="time" timeStyle="full" timeZone="EST" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="time" timeStyle="full" timeZone="CST" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="time" timeStyle="full" timeZone="MST" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="time" timeStyle="full" timeZone="PST" />
<br />

<fmt:setLocale value="zh_cn" />
<fmt:formatDate value="<%=new Date()%>" type="time" timeStyle="full" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="time" timeStyle="full" timeZone="EST" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="time" timeStyle="full" timeZone="CST" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="time" timeStyle="full" timeZone="MST" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="time" timeStyle="full" timeZone="PST" />
<br />     输出结果:
下午09时41分37秒 CST
上午08时41分37秒 EST
上午07时41分37秒 CST
上午06时41分37秒 MST
上午05时41分37秒 PST

七:<fmt:parseDate>
-------------------------------------------------------------------
将字符串类型的时间转换为日期类型.

value 用来格式化的时间或日期的字符串
type 指定格式化的是日期还是时间,或者两者都是取值范围:date,time,both
pattern 自定义格式化样式
dateStyle 日期的格式化样式
timeStyle 时间的格式化样式
timeZone 指定使用的时区
var 存储格式化后的结果
scope 指定存储的范围

示例:
<fmt:setLocale value="zh_cn" />
<fmt:parseDate type="date" value="2008-4-5"/>
输出: Sat Apr 05 00:00:00 CST 2008,
这里已经将字符串” 2008-4-5”转换为了日期对象了.转换一定得注意,类似于2008-4-5这样的字符串,type必须为date,类似于12:34:56的字符串,type必须为time类似于2008-4-5 12:34:56这样的字符串,type必须为both还要注意浏览器的语言环境的设置,如果为zh_tw,那么字符串就必须得符合当地的标准,如为2009/12/7 下午 09:24:26就正确转换为日期对象,否则就会报错.

八:<fmt:setTimeZone>
-------------------------------------------------------------------
value 设定时区
var 存储设定的时区
scope 存储的范围

value用来设定时区,可以是EST,CST,MST,PST等,如果有var属性,则将结果存储在所设定的范围之内.在属性范围内的页面都会使用该时区为默认时区.

Java代码
<fmt:setLocale value="zh_cn" />
<fmt:setTimeZone value="EST" />
<fmt:formatDate value="<%=new Date()%>" type="time" timeStyle="full" /><br />
<fmt:formatDate value="<%=new Date()%>" type="time" timeStyle="full" /><br />
<fmt:formatDate value="<%=new Date()%>" type="time" timeStyle="full" /><br />

<fmt:setLocale value="zh_cn" />
<fmt:setTimeZone value="EST" />
<fmt:formatDate value="<%=new Date()%>" type="time" timeStyle="full" /><br />
<fmt:formatDate value="<%=new Date()%>" type="time" timeStyle="full" /><br />
<fmt:formatDate value="<%=new Date()%>" type="time" timeStyle="full" /><br />
输出:
上午09时25分12秒 EST
上午09时25分12秒 EST
上午09时25分12秒 EST
此时区在该页面内都有效

九:<fmt:timeZone>
-------------------------------------------------------------------
用来暂时设置时区.

Java代码
<fmt:setLocale value="zh_cn" />
<fmt:timeZone value="EST">
<fmt:formatDate value="<%=new Date()%>" type="time" timeStyle="full" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="time" timeStyle="full" />
<br />
</fmt:timeZone>
<fmt:formatDate value="<%=new Date()%>" type="time" timeStyle="full" />

<fmt:setLocale value="zh_cn" />
<fmt:timeZone value="EST">
<fmt:formatDate value="<%=new Date()%>" type="time" timeStyle="full" />
<br />
<fmt:formatDate value="<%=new Date()%>" type="time" timeStyle="full" />
<br />
</fmt:timeZone>
<fmt:formatDate value="<%=new Date()%>" type="time" timeStyle="full" />
此标签的时区只是部分,在标签开始至标签结束内有效,其它地方无效,其它地方还是会使用默认时区