Home Java Java-exception Number Format Exception



Number Format Exception
Posted on: October 22, 2008 at 12:00 AM
NumberFormatException is a subclass of the Runtime Exception class. A Number Format Exception occurs in the java code when a programmer tries to convert a String into a number.

Number Format Exception

     

NumberFormatException is a subclass of the Runtime Exception class.  A Number Format Exception occurs in the java code when a programmer tries to convert a String into a number. The Number might be int,float or any java numeric values. 

Understand Number Format Exception

The conversions are done by the functions Integer.parseInt and Integer.parseDouble.  Consider the function call Integer.parseInt(str) where str is a variable of type String. Suppose the value of str is  "60", then the function call  and convert the string into the int 60. However, if you give the value of str is "saurabh", the function call will fail to compile because "saurabh" is not a legal string representation of an int value. In such case,  NumberFormatException will occurs

 

 

 

public class ConvertStringToNumber
{

   public static void main(String[] args)
{


   try


{


   String s = "saurabh";


   int i = Integer.parseInt(s);


  // this line of code will never be reached//


   System.out.println("int value = " + i);

}


   catch (NumberFormatException nfe)


{
 

  nfe.printStackTrace();

}


}

}


Output on Command Prompt


C:\Documents and Settings\Administrator>cd\

C:\>cd saurabh\

C:\saurabh>javac ConvertStringToNumber.java

C:\saurabh>java  ConvertStringToNumber
java.lang.NumberFormatException: For input string: "saurabh"
        at java.lang.NumberFormatException.forInputString(Unknown Source)
        at java.lang.Integer.parseInt(Unknown Source)
        at java.lang.Integer.parseInt(Unknown Source)
        at ConvertStringToNumber.main(ConvertStringToNumber.java:9)

 



	  
 
      


				
					

					

Related Tags for Number Format Exception:
javacstringexceptionclassormformtimeconvertioruntimefloatformatvaluenumberintsubclassprogrammertexforienumericprogramvaluestoramrunenumberformattrieimcemateinrmsubasmnttrjclesmeintoprowhenssuatanyisimeformatexceptionexceptcodcodeccstrrtvaruntsruntsriringthavbcstaluprmiodeonogro


More Tutorials from this section

Ask Questions?    Discuss: Number Format Exception   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.