zoukankan      html  css  js  c++  java
  • fmt:formatNumber use locale display negative currency in -$xxx.xx format in JSTL

    First, we want to know our own locale,how to display the locale in a JSTL?

    <c:out value="${pageContext.request.locale.language}"/> 
    


    I'm confused with the jstl tag libs:

    I want to format a number to a currency with german style

    <%@page contentType="text/html" 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" %>
    <html>
    <head>
        <title>format number</title>
    </head>
    <body>
        <c:set var="val" value="40.52" />
        <p> Currency in USA
        <fmt:setLocale value="en_US" scope="session"/>
    
        <fmt:formatNumber value="${val}" type="currency" />
        </p>
        <p>Currency in Germany
        <fmt:setLocale value="de_DE" scope="session"/>
    
        <fmt:formatNumber value="${val}" type="currency"/>
        </p>
    </body>
    </html>

    And thats the output:
    Currency in USA $40.52
    Currency in Germany 40,52 



    I am using fmt:formatNumber to format currency in JSTL, it will display negative currency in ($100) format, if you want to make it display negative currency in negative format instead of ($100).

    I would suggest:

    <fmt:formatNumber type="currency" pattern="$#,##0.00;-$#,##0.00" value="-10000" />

    You can remove '$' from the pattern, if you like.


    order example:

    <c:set  var="val"  value="46563746375"/>
    <fmt:formatNumber  value="${val}"  pattern="###.###E0"/>

    If you run the above code you will see the number is formatted as the pattern which is 46.5637E9 .



  • 相关阅读:
    使用redis作为缓存收集日志
    使用kafka作为缓存收集日志
    使用filebeat收集日志
    通过zabbix监控vCenter虚拟化
    zabbix配合grafana进行图形展示
    Filter学习
    spring框架学习(四)——注解方式AOP
    spring框架学习(三)——AOP( 面向切面编程)
    spring框架学习(二)——注解方式IOC/DI
    spring框架学习(一)——IOC/DI
  • 原文地址:https://www.cnblogs.com/molashaonian/p/7242022.html
Copyright © 2011-2022 走看看