Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I developed a GPS application , and i get the values like :

78.38582246667-17.4532826666

but i need like:

78.385 - 17.453

i am using DecimalFormating also. But i am not get the Logitude and Latitude upto 3 decimal points.

here is my sample code:

if (location != null) {         
    String credits = String.format("Current Location \n Longitude: %1$s \n Latitude: %2$s", location.getLongitude(), location.getLatitude());       
    Double number = Double.valueOf(credits);
    DecimalFormat dec = new DecimalFormat("#.000 EUR");
    String message = dec.format(number);
    Toast.makeText(Clockin.this, message, Toast.LENGTH_SHORT).show();
    //txt.setText(message); 
    System.out.println("GPS.."+message);
}   
share|improve this question
Why are you printing out EUR? and shouldn't it be 78.386 – Mark Jun 6 '12 at 7:39

1 Answer

Use Below Code line

DecimalFormat dec = new DecimalFormat("#.###");

instead of

DecimalFormat dec = new DecimalFormat("#.000 EUR");
share|improve this answer
Thank You.. I got result. – suresh vanga Jun 6 '12 at 10:28
1  
if answer is useful than accept it. – Dipak Keshariya Jun 6 '12 at 10:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.