-
Bug
-
Resolution: Fixed
-
P2
-
1.4.0
-
beta3
-
sparc
-
solaris_2.6
Name: auR10023 Date: 08/16/2001
java.text.MessageFormat.parse() cannot parse time with long and full subformats.
Here is the example:
---------------t.java---------------
import java.util.*;
import java.text.*;
class t {
public static void main(String args[]) {
MessageFormat mf = new MessageFormat("{0,time," + args[0] + "} - time");
String text = MessageFormat.format("{0,time," + args[0] + "} - time",
new Object [] { new Date(123456789012L)});
try {
Object[] objs = mf.parse(text);
} catch (ParseException e) {
System.out.println("ParseException");
return;
}
System.out.println("OK");
}
}
#java -version
java version "1.4.0-beta_refresh"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-beta_refresh-b75)
Java HotSpot(TM) Client VM (build 1.4.0-beta_refresh-b75, mixed mode)
#java t short
OK
#java t medium
OK
#java t long
ParseException
#java t full
ParseException
#java -version
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, interpreted mode)
#java t short
OK
#java t medium
OK
#java t long
OK
#java t full
OK
======================================================================