我正在尝试从编辑文本中解析双精度,但我不断收到数字格式异常错误。
我最初尝试过这个...
premiumvalue = Double.parseDouble(premium.getText().toString());
amountweightvalue = Double.parseDouble(amountweight.getText().toString());
然后尝试了这个......无济于事。
try{
premiumvalue = Double.parseDouble(premium.getText().toString());
} catch (final NumberFormatException e) {
premiumvalue = 0;
}
try{
amountweightvalue = Double.parseDouble(amountweight.getText().toString());
} catch (final NumberFormatException e) {
premiumvalue = 0;
}
我是一个菜鸟,任何解决此问题的帮助将不胜感激。