<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>JSTL 포매팅 라이브러리 : formatNumber 실습</title>
</head>
<body>
첫번째 수 <fmt:formatNumber value="12345000" groupingUsed="true" /> <br>
두번째 수 <fmt:formatNumber value="3.14158" pattern="#.##" /> <br>
세번째 수 <fmt:formatNumber value="10.5" pattern="#.00" /> <br>
퍼센트 화 <fmt:formatNumber value="0.5" type="percent" /> <br>
</body>
</html>
'JAVA > JSP & Servlet' 카테고리의 다른 글
JSTL [SQL 라이브러리] (0) | 2013.03.26 |
---|---|
JSTL [Function 라이브러리] (0) | 2013.03.26 |
JSTL [Formatting 라이브러리] : formatData[pattern] (0) | 2013.03.26 |
JSTL [Formatting 라이브러리] : formatData (0) | 2013.03.26 |
JSTL [Core 라이브러리] : redirect (0) | 2013.03.26 |