converting double to String
807607Jan 5 2007 — edited Jan 5 2007consider
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?