Skip to Main Content

Java Programming

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

converting double to String

807607Jan 5 2007 — edited Jan 5 2007
consider
double = 555555555.767777777777D;
i want to store this double into a string with out the word E,

if i do this,
String str = Double.toString(double)
System.out.println(str);
it will display like this,
5.Esomenumber.
how can i store the double into string?
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Feb 2 2007
Added on Jan 5 2007
7 comments
542 views