mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-5938 Fix inaccurate output on RBNF demo sample (accuracy)
- In order to guarantee more accuracy on formatting, check if number has fraction. If so, use double. Otherwise, use long.
This commit is contained in:
parent
06da8bebfe
commit
2fc7f67c6b
1 changed files with 7 additions and 4 deletions
|
@ -116,8 +116,9 @@ public class RbnfDemo extends DemoApplet {
|
|||
textField.setText("PARSE ERROR");
|
||||
}
|
||||
else {
|
||||
theNumber = new BigDecimal(fieldText);
|
||||
textField.setText(spelloutFormatter.format(theNumber.doubleValue(), ruleSetName));
|
||||
theNumber = new BigDecimal(temp instanceof Long ? temp.longValue() : temp.doubleValue());
|
||||
textField.setText(spelloutFormatter.format(
|
||||
theNumber.scale() == 0 ? theNumber.longValue() : theNumber.doubleValue(), ruleSetName));
|
||||
}
|
||||
}
|
||||
} );
|
||||
|
@ -243,7 +244,8 @@ public class RbnfDemo extends DemoApplet {
|
|||
|
||||
numberField.setText(numberFormatter.format(theNumber));
|
||||
numberField.selectAll();
|
||||
textField.setText(spelloutFormatter.format(theNumber.doubleValue(), ruleSetName));
|
||||
textField.setText(spelloutFormatter
|
||||
.format(theNumber.scale() == 0 ? theNumber.longValue() : theNumber.doubleValue(), ruleSetName));
|
||||
|
||||
Panel leftPanel = new Panel();
|
||||
leftPanel.setLayout(new BorderLayout());
|
||||
|
@ -412,7 +414,8 @@ public class RbnfDemo extends DemoApplet {
|
|||
|
||||
void redisplay() {
|
||||
numberField.setText(numberFormatter.format(theNumber));
|
||||
textField.setText(spelloutFormatter.format(theNumber.doubleValue(), ruleSetName));
|
||||
textField.setText(spelloutFormatter
|
||||
.format(theNumber.scale() == 0 ? theNumber.longValue() : theNumber.doubleValue(), ruleSetName));
|
||||
}
|
||||
|
||||
void makeNewSpelloutFormatter() {
|
||||
|
|
Loading…
Add table
Reference in a new issue