I want to parse 78 into double variable where 78 is stored as a String
I used below code to parse.
Double.parseDouble("78");
It display's Exception Error java.lang.NumberFormatException
Plz tell me How can I parse String 78 into double
|
|
Well what you passed was an integer and not a string. To use it do this:
|
|||||||||||||||||
|
|
It shouldn't be In that case it shouldn't give you any exception. |
|||
|
|
pass it as
|
|||||
|
|
You need to put quotes around your parameter.
|
|||||
|
|
Well, I strongly suspect that the value of the string variable you're passing in actually isn't a valid number. I suggest you log the Unicode value of each character, so you can see exactly what's in there. The code you've given (passing the string "78") should be absolutely fine... but you may have some extra, invisible characters in your real string. Logging the exact values should make that clear. |
|||
|
|
|
before you parse your string variable , use the method
|
|||
|
|