-
Bug
-
Resolution: Not an Issue
-
P5
-
None
-
1.3.0
-
x86
-
windows_nt
Name: skT45625 Date: 07/06/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 thousands separator for the French locale is not diplayable.
DecimalFormat df = (DecimalFormat)NumberFormat.getInstance(Locale.FRENCH);
DecimalFormatSymbols dfs = df.getDecimalFormatSymbols();
char sep = dfs.getGroupingSeparator();
System.out.println("French thousands separator = <"+sep+">");
Result:
French thousands separator = <?>
In a JTextField the thousands separator doesn't show at all.
JTextField tf = new JTextField(10);
tf.setText(new StringBuffer("123")
.append(sep).append("456").toString());
Shown:
123 456
(Review ID: 106905)
======================================================================
- relates to
-
JDK-4510618 [Fmt-Nu] French thousands separator is non-breaking space
-
- Closed
-