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)
======================================================================
- relates to
-
JDK-4238266 StringTokenizer.hasMoreElements() has unexpected side-effect
-
- Closed
-