<FMT:formatNumber>标记用于格式数字,百分比,和货币。
<FMT:formatNumber>标签具有以下属性-
属性 | 描述 | 需要 | 默认 |
---|---|---|---|
值 | 要显示的数值 | 是 | 没有 |
类型 | NUMBER,CURRENCY或PERCENT | 没有 | 数 |
模式 | 指定输出的自定义格式模式。 | 没有 | 没有 |
货币代码 | 货币代码(用于类型=“ currency”) | 没有 | 从默认语言环境 |
currencySymbol | 货币符号(用于类型=“ currency”) | 没有 | 从默认语言环境 |
分组使用 | 是否对数字分组(TRUE或FALSE) | 没有 | 真正 |
maxIntegerDigits | 可打印的最大整数位数 | 没有 | 没有 |
minIntegerDigits | 要打印的最小整数位数 | 没有 | 没有 |
maxFractionDigits | 最多可打印的小数位数 | 没有 | 没有 |
minFractionDigits | 最少要打印的小数位数 | 没有 | 没有 |
变种 | 用于存储格式化数字的变量名称 | 没有 | 打印到页面 |
范围 | 变量的范围,用于存储格式化的数字 | 没有 | 页 |
<%@ 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>JSTL fmt:formatNumber Tag</title> </head> <body> <h3>Number Format:</h3> <c:set var = "balance" value = "120000.2309" /> <p>Formatted Number (1): <fmt:formatNumber type = "percent" maxIntegerDigits="3" value = "${balance}" /></p> <p>Formatted Number (2): <fmt:formatNumber type = "percent" minFractionDigits = "10" value = "${balance}" /></p> <p>Formatted Number (3): <fmt:formatNumber type = "percent" maxIntegerDigits = "3" value = "${balance}" /></p> </body> </html>
上面的代码将产生以下结果-
Number Format: Formatted Number (1): 023% Formatted Number (2): 12,000,023.0900000000% Formatted Number (3): 023%