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
titleCurrency Formatting/title
/head
body
h1Currency Formatting and locales/h1
h3English, Great Britain/h3
fmt:setLocale value="en_GB" /
fmt:formatNumber type="currency" value="80000" /br/
h3English, USA/h3
fmt:setLoca...[ 查看全文 ]