<%@ 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>Insert title here</title>
</head>
<body>
첫번째 수 : <fmt:formatNumber value="123456000" groupingUsed="true"/><br />
두번째 수 : <fmt:formatNumber value="3.14158" pattern="#.##"/><br />
세번째 수 : <fmt:formatNumber value="10.5" pattern="#.00"/>
</body>
</html>
'JSP' 카테고리의 다른 글
JSTL DB연결하여 테이블 내용 가져오기 (1) | 2013.03.22 |
---|---|
JSTL 함수 라이브러리 (0) | 2013.03.22 |
JSTL <fmt:formatDate> 커스텀액션 style주기 (0) | 2013.03.22 |
JSTL <fmt:formatDate> 커스텀액션 (0) | 2013.03.22 |
JSTL <c:url> 커스텀액션 (0) | 2013.03.22 |