본문 바로가기

Develop/JAVA & Spring

isNumeric - 문자인지 숫자인지 구분

문자인지 숫자인지 구분

public static boolean isNumeric(String str)  
{  
  try  
  {  
    double d = Double.parseDouble(str);  
  }  
  catch(NumberFormatException nfe)  
  {  
    return false;  
  }  
  return true;  
}