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

java.text.DateFormat API Example Incorrect.

XMLWordPrintable

    • b49
    • generic, sparc
    • generic, solaris_9
    • Not verified

      See: http://java.sun.com/j2se/1.4.1/docs/api/java/text/DateFormat.html

      Be aware that there is a small error in the API documentation for DateFormat.
      The exaple code given:

      DateFormat df = DateFormat.getDateInstance();
      for (int i = 0; i < a.length; ++i) {
          output.println(df.format(myDate[i]) + "; ");
      }
       
      Should be:

      DateFormat df = DateFormat.getDateInstance();
      for (int i = 0; i < myDate.length; ++i) {
          output.println(df.format(myDate[i]) + "; ");
      }

            shommel Scott Hommel (Inactive)
            jwbuckle Joel Buckley (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: