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.
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) {
}
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)
|
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.
Ask Questions? Discuss: Number Format Exception View All Comments
Post your Comment