我想在Android中使用大于20位的逗号格式化数字。我在DecimalFormat
上使用了TextWatcher
类和EditText
,但问题是当我输入大于20位的数字时,它在20位数后显示0而不是数字。
它工作正常,直到20位数
应该感谢任何帮助。谢谢你提前
private class NumberTextWatcher implements TextWatcher {
private DecimalFormat df;
private DecimalFormat dfnd;
private boolean hasFractionalPart;
private EditText et;
public NumberTextWatcher(EditText et)
{
df = new DecimalFormat("#,###,###,###.#####");
df.setDecimalSeparatorAlwaysShown(true);
dfnd = new DecimalFormat("#,###");
this.et = et;
hasFractionalPart = false;
}
@SuppressWarnings("unused")
private static final String TAG = "NumberTextWatcher";
@Override
public void afterTextChanged(Editable s)
{
et.removeTextChangedListener(this);
try {
int inilen, endlen;
inilen = et.getText().length();
String v = s.toString().replace(String.valueOf(df.getDecimalFormatSymbols().getGroupingSeparator()), "");
Number n = df.parse(v);
int cp = et.getSelectionStart();
if (hasFractionalPart) {
et.setText(df.format(n));
} else {
et.setText(dfnd.format(n));
}
endlen = et.getText().length();
int sel = (cp + (endlen - inilen));
if (sel > 0 && sel <= et.getText().length()) {
et.setSelection(sel);
} else {
// place cursor at the end?
et.setSelection(et.getText().length() - 1);
}
} catch (NumberFormatException nfe) {
// do nothing?
} catch (ParseException e) {
// do nothing?
}
et.addTextChangedListener(this);
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after)
{
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count)
{
if (s.toString().contains(String.valueOf(df.getDecimalFormatSymbols().getDecimalSeparator())))
{
hasFractionalPart = true;
} else {
hasFractionalPart = false;
}
}
}
答案 0 :(得分:1)
使用BigDecimal
。 When/why should we use BigDecimal?
String number = "12345678910111213141516000";
BigDecimal bd = new BigDecimal(number);
DecimalFormat formatter = new DecimalFormat("#,###,###,###.#####");
System.out.println("You want it : " + formatter.format(bd));
Number num = formatter.parse(number);
System.out.println("You don't want it : " + formatter.format(num));
输出
You want it : 12,345,678,910,111,213,141,516,000
You don't want it : 12,345,678,910,111,213,000,000,000