Is there way to convert a string to double. This is how i did.
String s = b.getText().toString();
double d = Double.parseDouble(s);
It gives NumberFormatException
|
Is there way to convert a string to double. This is how i did.
It gives NumberFormatException |
|||
|
Try this String s = b.getText().toString(); double d = Double.valueOf(s.trim()).doubleValue(); |
|||
|
You are probably starting off with a zero-length string. Check the length before you parse it. It also wouldn't hurt to catch NumberFormatException, although that shouldn't be problem if you have
|
|||
|
|
getText()? – chesles Aug 22 '11 at 21:11