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

I have a DecimalFormat like this:

DecimalFormat df = new DecimalFormat("#,###.###");

Then I have 3 methods which just return a float value for time, potential and current, with many decimals in case of the two last ones. So I'm trying to get an output message with the 3 values formated, so:

System.out.println("t="+df.format(getTime())+"(s), v="+df.format(getPotential())+"(V), i="+df.format(getI())+"(A)");

Time just count seconds from 0 to 10, without any decimal, and looks ok until it gets to 10. Then it shows 1E+1. I just don't understand why, since I have read at the API and it shouldn't be in scientific notation if I don't use an 'E' character at the DecimalFormat.

Also, potential goes from 0 to a certain value, using 3 decimals. Looks OK, but from 0 to 0.01, it appears with 4 decimals, being the last one always 0.

Any explanation to this behaviour of DecimalFormat? What am I doing wrong?

share|improve this question
4  
Please provide an SSCCE. sscce.org – dogbane Sep 21 '11 at 7:42
please provide output of your function without applying decimal format – Yagnesh Sep 21 '11 at 8:11
That would be (changing very quickly): 0(s), 0.000010254 (v), 0.0000400137 (A) 0(s), 0.000010379 (V), 0.0000380921 (A) ... etc. Maybe with even more decimals. It's hard to provide an exact output, and I think it's of no interest at all for the question – Roman Rdgz Sep 21 '11 at 9:01

2 Answers

up vote 0 down vote accepted

I tried your two lines of code with some of the values you mention in your comment - it simply works as advertised and specified.

This and the fact, that DecimalFormat is well known, well used and well tested, make it clear, that the real problem is something you have not shown to us. So until you provide us with a small, self contained example making the problem reproducible, I can only take a very deeeeep look into my crystal ball.

Common problems with Format and derived classes are:

  • They are not threadsafe. Strange things can happen, if the same instance is used in multiple threads. Are you using threads? Are you in an environment where concurrency matters (i.e. in an EJB container, in a Web container, ...)

  • They are not immutable. A common mistake is that one piece of codes creates a format and another piece of code modifies it using one of the set* or apply* methods.

  • The reference is not immutable. If another piece of code replaces the instance with another one ...

All this boils down to one thing: Just for now create a new method-local DecimalFormat just before the System.out if you have not done yet. If that fixes the problem you know where and what to search. If it does not fix the problem come back here with 10 lines of code showing the problem.

share|improve this answer

Maybe it would be simpler to use printf in your case :

System.out.printf("t=%d(s) v=%.2f(V) i=%.2f(A)\n", getTime(), getPotential(), getI());
share|improve this answer
That approach gave me problems, that's why I tried new ways of formatting. Indeed, this worked, but gave problems with a diferent part of the program non-directly related, so I prefer a different way. – Roman Rdgz Sep 21 '11 at 12:11

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.