I want to display GPS coordinates upto just 6 decimal places. e.g. if my GPS location is something like x.yyyyyyyyyy I want to display just x.yyyyyy and for this I use DecimalFormat class. But, if the number is like 8.3456709012, the output for the following code is like 8.34568
_yPos = 8.3456709012;
DecimalFormat decimalFormat = new DecimalFormat("#.######");
String yCoord = decimalFormat.format(_yPos);
whereas the expected output is 8.345670. Can anybody show me a way to do this?
8.345670and not8.345671? The latter would be the conventional way to show less digits (i.e. rounding), so going for truncation behaviour instead is unusual and (IMHO) should only be done if the application domain really needs it. – Andrzej Doyle Apr 24 '12 at 7:22_yPosis adouble) I get an output of8.345671, not8.34568. Are you sure this is the code you're actually running? Your problem may lie elsewhere. – Andrzej Doyle Apr 24 '12 at 7:240.000000helped me. – Rajkiran Apr 24 '12 at 7:55