[JAVA] double 타입을 출력할 때 소수점 자릿수를 조정하는 방법

By | 1월 18, 2010

* 방법 1 (정수로만 변환)

 
   new BigDecimal(숫자double값)
 

* 방법 2 (일정한 소수점 자릿수가 필요할 때)

   new java.text.DecimalFormat("#.#").format(숫자double값)

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments