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

DecimalFormat.format(double) gives different results depending on previous calls

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 1.2.2
    • core-libs
    • x86
    • windows_nt



      Name: stC104175 Date: 03/17/2000


      java version "1.2.2"
      Classic VM (build JDK-1.2.2-W, native threads, symcjit)


      A java.text.DecimalFormat object yields different results depending on previous
      calls to format(). The following program illustrates the problem:

      import java.text.DecimalFormat;

      public class showdcbug
      {
      public static void main(String[] argv)
      {
      DecimalFormat fmt = new DecimalFormat("#,##0");
      System.out.println( fmt.format(82800.0) );
      System.out.println( fmt.format(0.0) );
      }
      }

      OUTPUT:
      =======
      82,800
      1

      If we reverse the order of the "System.out.println(...)" lines , the output is:

      OUTPUT:
      =======
      0
      82,800
      (Review ID: 102575)
      ======================================================================

            nlindenbsunw Norbert Lindenberg (Inactive)
            stompkinsunw Sean Tompkins (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: