在JSP中使用formatNumber控制要显示的小数位数

先引入标签库

<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>

比如保留小数点后两位小数:

<fmt:formatNumber value="${xxx}" type="number" maxFractionDigits="2"/>
原文地址:https://www.cnblogs.com/chengyujia/p/7874149.html