반응형

float a = 1.123456;

String result = "";

String pattern = "0.##";
DecimalFormat df = new DecimalFormat(pattern);
result = df.format(a);

System.out.println(result);

반응형

'프로그래밍 > JAVA' 카테고리의 다른 글

[JAVA] 이클립스 실행시 오류 날때.  (0) 2010.08.06
JAVA 이클립스 override and update / commit  (0) 2010.08.05
JAVA 설치 및 환경설정 하기.  (0) 2010.08.04
JAVA 형변환  (0) 2010.07.07

+ Recent posts