728x90
<%@ page contentType="text/html; charset=euc-kr"%>
<%@ page import="java.text.*"%> // 빼먹으면 안된다!
<%
DecimalFormat format = new DecimalFormat("0.00");
double a = 3.14159265358979;
double b = 1234.5678;
String c = "9876.543";
%>
a : <%= format.format(a)%><br> // a는 3.14 출력
b : <%= format.format(b)%><br> //b는 1234.57 출력
c : <%= format.format(Double.parseDouble(c))%> // c는 9876.54 출력
출처: http://blog.naver.com/PostView.nhn?blogId=roggue2&logNo=40121426677
'HTML관련 > HTML&JSP 기본' 카테고리의 다른 글
새로 배우는 새로운 태그들 (0) | 2014.08.05 |
---|---|
HTML, ASP, JSP, PHP 등 각 언어별 No_Cache 설정 방법 (0) | 2014.07.11 |
jsp 2_풀링 톰캣이용기법 Connection Poo 커넥션 풀 (0) | 2014.06.20 |
JSP 풀링 기법 Connection Poo 커넥션 풀 (0) | 2014.06.19 |
HTML & JSP 에서 input 태그시 글자수 제한 (0) | 2014.06.12 |