본문 바로가기

개발관련/웹개발

[자바] NumberFormat 클래스를 이용한 숫자를 금액으로 표시하기

아래 메서드를 사용하면 된다.

public static String numberFormatter(String str){
  if(str == null || str.equals(""))
   str = "0";
  NumberFormat nf = NumberFormat.getInstance();
  return nf.format(Double.valueOf(str));
 }