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

StringTokenizer behavior different in latest JDK1.3

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Not an Issue
    • Icon: P3 P3
    • None
    • 1.3.0
    • core-libs
    • x86
    • windows_nt



      Name: skT45625 Date: 05/15/2000


      java version "1.3.0"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0-C)
      Java HotSpot(TM) Client VM (build 1.3.0-C, mixed mode)

      The StringTokenizer class seems to function differently in the latest release
      of JDK1.3. In this new release, changing the delimiter from the initial value
      causes the next call to nextToken() to include the previous delimiter.

      <pre>

      import java.util.*;
      class Test
      {
        public static void main(String[] args)
        {
          StringTokenizer st = new StringTokenizer("test=abcd efg hij", "=");
          System.out.println(st.nextToken());
          while (st.hasMoreTokens())
          {
            System.out.println(st.nextToken(" "));
          }
        }
      }

      Output with latest JDK1.3
      test
      =abcd
      efg
      hij

      Output before lastest JDK1.3
      test
      abcd
      efg
      hij

      </pre>
      (Review ID: 104907)
      ======================================================================

            nsanjeevsunw Naveen Sanjeeva (Inactive)
            skondamasunw Suresh Kondamareddy (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: