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

java.text.DecimalFormat does not zero suppress

XMLWordPrintable

    • 1.2beta4
    • sparc
    • solaris_2.5.1
    • Verified

      The java.text.DecimalFormat class no longer zero suppresses # symbols.

      In the below example the data should be display
      as 9.02 & .00 not as 09.02 & 00.00


      import java.text.DecimalFormat;

      public class bug {
        public static void main (String args[]) {
          DecimalFormat nf = new DecimalFormat("##,###,###.00");

          System.out.println(nf.format(9.02));
          System.out.println(nf.format(0));
        }
      }

            aliusunw Alan Liu (Inactive)
            duke J. Duke
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: