使用JSTL格式,我想将数据格式设置为30.0 $到30 $。我们如何使用jstl格式化
答案 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>