I have two projects in my eclipse workspace which are having similar tasks. Both projects have a special part where I convert a double to an String.
I both projects I did this by calling String.valueOf(var).
In the older project I get the number always in a format like "-0.00097656" which is the format I need. In the newer one I get an tenth exponential format like "-9.765625E-4". I also have the fact that the old project cuts the string to be small enough.
My question is: Which commands can cause to this behavior that java changes the default conversion output. I already searched the code but I don't see something which does this. Or is it maybe an eclipse option?
I want to get the newer project consistent to the older one and I don't want to use these string format calls every time in the new project. Anywhere in the old project there must be a setting or some calls...
Hope somebody can give a hint.