-
Bug
-
Resolution: Fixed
-
P3
-
1.1.4
-
1.1.6
-
x86
-
windows_nt
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2017913 | 1.2.0 | John Oconner | P3 | Resolved | Fixed | 1.2beta3 |
Name: joT67522 Date: 11/12/97
The negative portion of the number format in DecimalFormat is being ignored.
Behavior is as if the negative format were not being entered at all.
import java.lang.*;
import java.text.*;
public class TestApp extends java.lang.Object
{
public static void main(java.lang.String[] args)
{
DecimalFormat dfFoo;
dfFoo = new DecimalFormat("0000;-000");
System.out.println(dfFoo.toPattern());
System.out.println(dfFoo.format(42));
System.out.println(dfFoo.format(-42));
System.out.println();
dfFoo.applyPattern("000;-000");
System.out.println(dfFoo.toPattern());
System.out.println(dfFoo.format(42));
System.out.println(dfFoo.format(-42));
System.out.println();
dfFoo.applyPattern("000;-0000");
System.out.println(dfFoo.toPattern());
System.out.println(dfFoo.format(42));
System.out.println(dfFoo.format(-42));
System.out.println();
dfFoo.applyPattern("0000;-000");
System.out.println(dfFoo.toPattern());
System.out.println(dfFoo.format(42));
System.out.println(dfFoo.format(-42));
System.out.println();
}
}
Produces the following erroneous output:
#0000
0042
-0042
#000
042
-042
#000
042
-042
#0000
0042
-0042
(Review ID: 19374)
======================================================================
- backported by
-
JDK-2017913 DecimalFormat: Negative format ignored
-
- Resolved
-