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

Posted by 앗뜨거
,