-
Bug
-
Resolution: Fixed
-
P3
-
1.1.6
-
1.2beta4
-
sparc
-
solaris_2.5
-
Verified
Name: dfC67450 Date: 02/02/98
java.text.DecimalFormat.parse(String text, ParsePosition pp) incorrectly parses
numbers when group separator is after decimal separator.
Here is the test demonstrating the bug:
-----------------Test.java------------------------
import java.text.*;
public class Test {
public static void main (String args[]){
DecimalFormat df = new DecimalFormat("#,##0.###", new DecimalFormatSymbols(java.util.Locale.US));
String text = "1.222,111";
System.out.println("\"" + text + "\" is parsed as " +
df.parse(text,new ParsePosition(0)));
text = "1.222x111";
System.out.println("\"" + text + "\" is parsed as " +
df.parse(text,new ParsePosition(0)));
}
}
---------Output from the test---------------------
"1.222,111" is parsed as 1.222111
"1.222x111" is parsed as 1.222
--------------------------------------------------
======================================================================