How could I convert from float to string or string to float?
In my case I need to make the assertion between 2 values string (value that I have got from table) and float value that I have calculated.
String valueFromTable = "25";
Float valueCalculated =25.0;
I tried from float to string:
String sSelectivityRate = String.valueOf(valueCalculated );
but the assertion fails
floatvalues are never precise? – xtofl Sep 26 '11 at 8:46Stringor asfloatvalues? This is not the same thing.floatis less precise thandoubleand either can have rounding errors from calculated values. – Peter Lawrey Sep 26 '11 at 8:47