Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the best way in Java to get a string out of a float, that contains only X digits after the dot?

share|improve this question
2  
Have you read the docs? This, like you said, is a simple question that the answer can be found in the docs. – Brett Walker Aug 14 '11 at 12:45
Sometimes a fast hint can help a lot. – rails Aug 14 '11 at 13:05
Usually good research avoids the need to ask the question. This is not a help-desk. – Andrew Thompson Aug 14 '11 at 14:09

3 Answers

up vote 3 down vote accepted

Here are two ways of dealing with the problem.

    public static void main(String[] args) {
    final float myfloat = 1F / 3F;

    //Using String.format 5 digist after the .
    final String fmtString = String.format("%.5f",myfloat);
    System.out.println(fmtString);

    //Same using NumberFormat
    final NumberFormat numFormat = NumberFormat.getNumberInstance();
    numFormat.setMaximumFractionDigits(5);
    final String fmtString2 = numFormat.format(myfloat);
    System.out.println(fmtString2);
}
share|improve this answer
  double pi = Math.PI;
  System.out.format("%f%n", pi);    //  -->  "3.141593"    
  System.out.format("%.3f%n", pi);  //  -->  "3.142"

note: %n is for newline

Source: http://download.oracle.com/javase/tutorial/java/data/numberformat.html

share|improve this answer

Is Float.toString() what you're after?

See also the Formatter class for an alternative method.

share|improve this answer
toString() will let me control the the result only with substr. I will use the foratter. thanks. – rails Aug 14 '11 at 12:52

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.