- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
"+123.45", 0.0d -> “0”。 我调用 format.setPositi-6ren">
需要带符号的结果,0.0d 除外。 IE:
-123.45d -> "-123.45",
123.45d -> "+123.45",
0.0d -> “0”。
我调用 format.setPositivePrefix("+")
在 DecimalFormat 的实例上强制在结果中为正输入符号。
最佳答案
我确定有更优雅的方式,但看看这是否有效?
import static org.junit.Assert.assertEquals;
import java.text.ChoiceFormat;
import java.text.DecimalFormat;
import java.text.FieldPosition;
import java.text.NumberFormat;
import java.text.ParsePosition;
import org.junit.Test;
public class NumberFormatTest {
@Test
public void testNumberFormat() {
NumberFormat nf = new MyNumberFormat();
assertEquals("-1234.4", nf.format(-1234.4));
assertEquals("0.0", nf.format(0));
assertEquals("+0.3", nf.format(0.3));
assertEquals("+12.0", nf.format(12));
}
}
class MyNumberFormat extends NumberFormat {
private DecimalFormat df = new DecimalFormat("0.0#");
private ChoiceFormat cf = new ChoiceFormat(new double[] { 0.0,
ChoiceFormat.nextDouble(0.0) }, new String[] { "", "+" });
@Override
public StringBuffer format(double number, StringBuffer toAppendTo,
FieldPosition pos) {
return toAppendTo.append(cf.format(number)).append(df.format(number));
}
@Override
public StringBuffer format(long number, StringBuffer toAppendTo,
FieldPosition pos) {
return toAppendTo.append(cf.format(number)).append(df.format(number));
}
@Override
public Number parse(String source, ParsePosition parsePosition) {
throw new UnsupportedOperationException();
}
}
The negative subpattern is optional; if absent, then the positive subpattern prefixed with the localized minus sign ('-' in most locales) is used as the negative subpattern
new DecimalFormat("0.0#")
相当于
new DecimalFormat("0.0#;-0.0#")
-1234.5
和
1234.5
0.0 <= X < ChoiceFormat.nextDouble(0.0)
将使用 ""
的选择格式. ChoiceFormat.nextDouble(0.0)
是大于 0.0
的最小数. ChoiceFormat.nextDouble(0.0) <= X < 1
将使用 "+"
的选择格式. If there is no match, then either the first or last index is used, depending on whether the number (X) is too low or too high. If the limit array is not in ascending order, the results of formatting will be incorrect. ChoiceFormat also accepts \u221E as equivalent to infinity(INF).
Double.NEGATIVE_INFINITY <= X < 0
将使用 ""
. 1 <= X < Double.POSITIVE_INFINITY
将使用 "+"
. 关于java - 如何将 java.text.NumberFormat 格式 0.0d 设为 “0” 而不是 “+0” ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/673841/
我是一名优秀的程序员,十分优秀!