我们如何使用JSTL标签格式数据

时间:2014-04-10 13:11:51

标签: java jstl liferay

使用JSTL格式,我想将数据格式设置为30.0 $到30 $。我们如何使用jstl格式化

2 个答案:

答案 0 :(得分:1)

<c:set var="balance" value="30.0" />
<fmt:parseNumber var="i" integerOnly="true" type="number" value="${balance}$" />

答案 1 :(得分:1)

在jsp中尝试这种方式:

    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
    <html>
        <head>
        </head>
        <body>
            <p>
                <c:set var="balance" value="30.0" />
                <fmt:parseNumber integerOnly="true" type="number" value="${balance}"/><c:out value="$"/>
            </p>
        </body>
    </html>