Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4254220

format(0.0) gives "1." if preceeded by format(0.09). (Regression in 1.2.2 final)

XMLWordPrintable

    • kestrel
    • generic, x86, sparc
    • generic, solaris_2.6, windows_nt



      Name: rlT66838 Date: 07/14/99


      If we use a DecimalFormat("#.") to format(0.09), and then use that same DecimalFormat object to format(0.0), it will return the string "1." instead of "0.".

      This worked correctly in JDK 1.2 but fails in JDK 1.2.2 final.

      Note the very similar bug 4243108, which occurs in 1.2.2 RC1 but not in 1.2.2 final. Seems like the fix to that bug may have caused this bug?

      import java.text.*;
      public class DoubleFormatTest4
      {
      public final static void main (String[] args)
      {
      DecimalFormat f = new DecimalFormat("#.");
      System.out.println(f.format(0.09));
      System.out.println(f.format(0.0));
      }
      }

      Output:
      0.
      1.
      (Review ID: 85591)
      ======================================================================

            sherman Xueming Shen
            rlewis Roger Lewis (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: