Hi,
I'm writing some code that involves converting a double to a string. The problem is that when I use the toString() function to convert it, it automatically changes it to scientific notation (ie. 0.001005 = 1.005E-3). The parser I have to deal with can't work with numbers in this format so I need to figure out how to prevent Java from converting my number to sci notation.
Any help would be greatly appreciated because I have to have this done for tomorrow!

Thanks,
Greg