DecimalFormat 浮点数上的 NumberFormatException
NumberFormatException on DecimalFormat Float
经过多次尝试,我设法为 Float 创建了一个模式,我设法通过 return ActivityResult 完成,并将其设置在相应的字段中。现在我遇到了一个不接受 Float 模式的 TextWatcher 问题,有人可以帮我解决吗?
这是 TextWather
private abstract class TextChangedListener implements TextWatcher
{
public abstract void numberEntered(Float number);
@Override
public void afterTextChanged(Editable s)
{
String text = s.toString();
try
{
Float parsedFloat = Float.valueOf(text);
numberEntered(parsedFloat);
} catch (NumberFormatException e)
{
Log.w(getPackageName(), "Non si puo' parsare '" + text + "' col numero", e);
}
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after)
{
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count)
{
}
}
这是浮动模式
DecimalFormat dec = new DecimalFormat("###,##0.00", DecimalFormatSymbols.getInstance(Locale.ITALIAN));
感谢大家!我用这个方法解决了我的问题!
private void decimalFormatWithSymbol() {
dec = new DecimalFormat("##0.00", DecimalFormatSymbols.getInstance(Locale.ITALIAN));
dfs = new DecimalFormatSymbols();
dfs.setDecimalSeparator('.');
dec.setDecimalFormatSymbols(dfs);
}
如果你想给float
一些小数,把它转换成double
:
float f = 90;
DecimalFormat decimal2 = new DecimalFormat("#.##"); // gives 2 numbers after '.'
double dec = Double.valueOf(decimal2.format(f));
以上代码将为您提供输出:
90.00
主要是 Locale 问题,只需将 locale 定义为英文问题就解决了。
public double convertTwoDecimalPointAmount(double amount) {
DecimalFormat df = new DecimalFormat("0.00", DecimalFormatSymbols.getInstance(Locale.ENGLISH));
return Double.parseDouble(df.format(amount));
}
经过多次尝试,我设法为 Float 创建了一个模式,我设法通过 return ActivityResult 完成,并将其设置在相应的字段中。现在我遇到了一个不接受 Float 模式的 TextWatcher 问题,有人可以帮我解决吗?
这是 TextWather
private abstract class TextChangedListener implements TextWatcher
{
public abstract void numberEntered(Float number);
@Override
public void afterTextChanged(Editable s)
{
String text = s.toString();
try
{
Float parsedFloat = Float.valueOf(text);
numberEntered(parsedFloat);
} catch (NumberFormatException e)
{
Log.w(getPackageName(), "Non si puo' parsare '" + text + "' col numero", e);
}
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after)
{
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count)
{
}
}
这是浮动模式
DecimalFormat dec = new DecimalFormat("###,##0.00", DecimalFormatSymbols.getInstance(Locale.ITALIAN));
感谢大家!我用这个方法解决了我的问题!
private void decimalFormatWithSymbol() {
dec = new DecimalFormat("##0.00", DecimalFormatSymbols.getInstance(Locale.ITALIAN));
dfs = new DecimalFormatSymbols();
dfs.setDecimalSeparator('.');
dec.setDecimalFormatSymbols(dfs);
}
如果你想给float
一些小数,把它转换成double
:
float f = 90;
DecimalFormat decimal2 = new DecimalFormat("#.##"); // gives 2 numbers after '.'
double dec = Double.valueOf(decimal2.format(f));
以上代码将为您提供输出:
90.00
主要是 Locale 问题,只需将 locale 定义为英文问题就解决了。
public double convertTwoDecimalPointAmount(double amount) {
DecimalFormat df = new DecimalFormat("0.00", DecimalFormatSymbols.getInstance(Locale.ENGLISH));
return Double.parseDouble(df.format(amount));
}