fmt_currency.jsp

来自「jsp入门级代码」· JSP 代码 · 共 23 行

JSP
23
字号
<%@ page contentType="text/html;charset=GBK"%>
<%@ 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 Formatting</title></head>
<body>
  <h3>Currency Formatting and locale:</h3>
  <hr>
  <!--中文,中国显示格式-->
  <h5>Chinese, China</h5>
  <fmt:setLocale value="zh_CN" />
  <fmt:formatNumber type="currency" value="80000" /><br/>  
  <!--英语,英国显示格式-->
  <h5>English, Great Britain</h5>
  <fmt:setLocale value="en_GB" />
  <fmt:formatNumber type="currency" value="80000" /><br/>
  <fmt:formatNumber type="currency" value="80000" currencyCode="EUR"/><br/>
  <!--英语,美国显示格式-->
  <h5>English, USA</h5>
  <fmt:setLocale value="en_US" />
  <fmt:formatNumber type="currency" value="80000" /><br/>
</body>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?