Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
1  
Your string isn't a number. – SLaks Aug 22 '11 at 21:11
1  
What value was returned from getText()? – chesles Aug 22 '11 at 21:11
1  
What does b contain for text? – Gregg Rivinius Aug 22 '11 at 21:11
1  
Debug and check what is value of s , which is being passed in parseDouble – Kavitha Aug 22 '11 at 21:15
the value of 's' is entered by the user..but before that itself the exception occurs – SRI Aug 22 '11 at 21:36

2 Answers

Try this

String s = b.getText().toString(); double d = Double.valueOf(s.trim()).doubleValue();

share|improve this answer
no it doesn't work..still the exception ocurs – SRI Aug 22 '11 at 21:36
What is the value of s i.e. b.getText().toString()? – Manan Aug 22 '11 at 21:50

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 android:inputType="number" in the view's layout.

double d = 0;
CharSequence cs = b.getText();
if(cs != null && cs.length() > 0) {
    d = Double.parseDouble(cs.toString());
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.