0

我有一个计算两个 EditText 的 TextView。只要 EditText 中有一个数字,它就可以工作,但是一旦删除所有数字,我就会收到此错误

java.lang.NumberFormatException:无法将“”解析为整数

我明白为什么我会收到错误,但我不知道如何解决它。我在这个网站上搜索并搜索了答案,但它们似乎不适用于我的情况。我试图捕捉 NumberFormatException 但我做不到。有什么帮助吗?

items = (EditText)findViewById(R.id.items);
itemcost = (EditText)findViewById(R.id.itemcost);
inventoryvalue = (TextView)findViewById(R.id.inventoryvalue);


TextWatcher textWatcher = new TextWatcher() {
public void afterTextChanged(Editable s) {
calculateResult();
}
public void beforeTextChanged(CharSequence s, int start, int count, int after){}
public void onTextChanged(CharSequence s, int start, int before, int count){}
};

items.addTextChangedListener(textWatcher);
itemcost.addTextChangedListener(textWatcher);
}

private void calculateResult() throws NumberFormatException {

String s1 = items.getText().toString();
    String s2 = itemcost.getText().toString();
    int value1 = Integer.parseInt(s1);
    int value2 = Integer.parseInt(s2);
    int result = value1 * value2; {

// Calculates the result
result = value1 * value2;
// Displays the calculated result
inventoryvalue.setText(String.valueOf(result));             
}
4

4 回答 4

5

检查您的字符串是否仅包含数字:

s1 = s1.trim();
if (s1.matches("[0-9]+") {
 value1 = Integer.parseInt(s1);
}
于 2013-06-14T12:52:13.410 回答
0

在 calculateResult 方法中将所有内容放入 if 块中:

if(items.getText().tostreing().length>0 && itemcost.getText().toString().length>0){
//your current method definition
}
于 2013-06-14T12:53:03.753 回答
0

将您的方法更改afterTextChanged为:

public void afterTextChanged(Editable s) {
  if (s.length > 0)
      calculateResult();
}
于 2013-06-14T12:55:08.897 回答
0

在 calculateResult() 你做 Integer.parseInt(s1); 不检查字符串 s1 或 s2 是否为空?

因此,您不能将空字符串转换为 Int。尝试检查 s1 或 s2 是否为空,然后再尝试将它们转换为整数并使用它们进行计算...

您可以使用 : .equals(String s) 检查字符串是否与其他字符串相等。

于 2013-06-14T12:55:42.777 回答