JSTL之数字、日期格式化
2020-12-13 06:02
标签:style blog class c code java
http://java.sun.com/jsp/jstl/fmt"
prefix="fmt" %>
http://java.sun.com/jsp/jstl/core"
prefix="c" %>
日期表示
百分数,千分数表示
其他数字表示
fmt:formatNumber value="123456.7891" pattern="#,#00.0#"/> -- 123,456.79
货币表示
===1
==2
参考 ==============================================================================
java格式化输出:
DecimalFormat df
= new DecimalFormat("格式");
String fmt
=df.format(double);
符号 意义
0 一个数位
# 一个数位,前导零和追尾零不显示
. 小数点分割位置
, 组分隔符的位置
- 负数前缀
% 用100乘,并显示百分号
其他任何符号 在输出字符串中包括指定符号

@ page language="java" contentType="text/html; charset=gb18030"%>
@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
html>
head>
title>My JSP ‘fmt.jsp‘ starting pagetitle>
head>
body>
c:set var="salary" value="3540.2301"/>
c:set var="total" value="56225.2301"/>
fmt:setLocale value="en_US"/>
currency:fmt:formatNumber value="${salary}" type="currency" currencyCode="USD"/>br>
percent:fmt:formatNumber value="${salary/total}" type="percent" maxFractionDigits="4"/>br>
hr>
jsp:useBean id="now" class="java.util.Date">jsp:useBean>
fmt:setLocale value="zh_CN"/>
full-->fmt:formatDate value="${now}" type="both" dateStyle="full" timeStyle="full"/>br>
long-->fmt:formatDate value="${now}" type="both" dateStyle="long" timeStyle="long"/>br>
medium-->fmt:formatDate value="${now}" type="both" dateStyle="medium" timeStyle="medium"/>br>
default-->fmt:formatDate value="${now}" type="both" dateStyle="default" timeStyle="default"/>br>
short-->fmt:formatDate value="${now}" type="both" dateStyle="short" timeStyle="short"/>br>
body>
html>

JSP 国际化-格式化货币和日期
1.格式化货币
世界上许多国家都有不同的货币格式和数字格式惯例。针对特定的本地化环境正确地格式化和显示货币是本地化的一个重要部分。

@ page pageEncoding="UTF-8" %>
@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
html>
head>
title>Currency Formattingtitle>
head>
body>
h1>Currency Formatting and localesh1>
h3>English, Great Britainh3>
fmt:setLocale value="en_GB" />
fmt:formatNumber type="currency" value="80000" />br/>
h3>English, USAh3>
fmt:setLocale value="en_US" />
fmt:formatNumber type="currency" value="80000" />br/>
h3>French, Franceh3>
fmt:setLocale value="fr_FR" />
fmt:formatNumber type="currency" value="80000" />br/>
h3>Japanese, Japanh3>
fmt:setLocale value="ja_JP" />
fmt:formatNumber type="currency" value="80000" />br/>
h3>Korean, Koreah3>
fmt:setLocale value="ko_KR" />
fmt:formatNumber type="currency" value="80000" />br/>
h3>Spanish, Spainh3>
fmt:setLocale value="es_ES" />
fmt:formatNumber type="currency" value="80000" />br/>
h3>Arabic, Egypth3>
fmt:setLocale value="ar_EG" />
fmt:formatNumber type="currency" value="80000" />br/>
h3>Using Local Numeric Formatting for Different Currencyh3>
h4>English, Great Britanh4>
fmt:setLocale value="en_GB" />
fmt:formatNumber type="currency" value="80000" />br/>
fmt:formatNumber type="currency" value="80000" currencyCode="EUR"/>br/>
body>
html>

2.格式化日期
类似于数字和货币格式化,本地化环境还会影响生成日期和时间的方式。

@ page pageEncoding="UTF-8" %>
@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
html>
head>
title>Date Formattingtitle>
head>
body>
h1>Date Formatting and localeh1>
fmt:timeZone value="EST">
jsp:useBean id="currentTime" class="java.util.Date"/>
h3>English, Great Britainh3>
fmt:setLocale value="en_GB" />
fmt:formatDate type="both" dateStyle="full" timeStyle="full" value="${currentTime}" />br/>
h3>English, USAh3>
fmt:setLocale value="en_US" />
fmt:formatDate type="both" dateStyle="full" timeStyle="full" value="${currentTime}" />br/>
h3>French, Franceh3>
fmt:setLocale value="fr_FR" />
fmt:formatDate type="both" dateStyle="full" timeStyle="full" value="${currentTime}" />br/>
h3>Japanese, Japanh3>
fmt:setLocale value="ja_JP" />
fmt:formatDate type="both" dateStyle="full" timeStyle="full" value="${currentTime}" />br/>
h3>Korean, Koreah3>
fmt:setLocale value="ko_KR" />
fmt:formatDate type="both" dateStyle="full" timeStyle="full" value="${currentTime}" />br/>
h3>Spanish, Spainh3>
fmt:setLocale value="es_ES" />
fmt:formatDate type="both" dateStyle="full" timeStyle="full" value="${currentTime}" />br/>
h3>Arabic, Egypth3>
fmt:setLocale value="ar_EG" />
fmt:formatDate type="both" dateStyle="full" timeStyle="full" value="${currentTime}" />br/>
fmt:timeZone>
body>
html>

type: 可以是time,date或both。控制是否只生成时间,只生成日期,或者时间日期都生成。
dateStyle: 可以是short, medium, long 或 full(default)。控制打印日期使用的具体格式。
timeStyle: 可以是short, medium, long 或 full(default)。控制打印时间使用的具体格式。
value: 这是一个java.util.Date 类型的值,用于生成日期和时间。
JSTL之数字、日期格式化,搜素材,soscw.com
JSTL之数字、日期格式化
标签:style blog class c code java
原文地址:http://www.cnblogs.com/ganymede/p/3739345.html