好的,我正在用Java编写一个计算器,我在我的添加方法中输入String
。我使用JButtons
将文字写入JTextField
。
当用户单击等于按钮时,我找到了他们想要执行的相对操作(如果他们单击一个操作员按钮,我将一个int设置为一个特定的数字(因此加法为1))。我首先将String
转换为char
数组,然后检查字符是数字还是运算符。
我计划为所有计算编写几种方法,我将使计算器能够(回归,减法等)。然后我使用.append
方法将不是运算符的字符写入StringBuffers
,然后我将其转换为字符串,然后再加倍。然后我执行计算,并返回结果。
当我尝试使用计算器时,Eclipse会在我尝试将保持java.lang.NumberFormatException
的字符串转换为StringBuffer
的行上报告double
。该异常是由空String
引起的。
有人可以解释为什么会这样,并提供解决方案吗?
以下是相关代码:
import java.awt.event.*;
import javax.swing.*;
import java.awt.GridLayout;
public class Calculator2012 extends JFrame implements ActionListener{
public static double calculateAdd(String inputString)//this is my addition method
{
int s = 0;
boolean g = true;
StringBuffer num1 = new StringBuffer();
StringBuffer num2 = new StringBuffer();
char[] b = inputString.toCharArray();
int i = 0;
if(g==true)
{
for(int v = 0; v<b.length; v++)
{
if(b[i]!='+')
{
num1.append(b[i]);
}
else
{
g = false;
s = ++i;
break;
}
i++;
}
}
else
{
for(int a = 0; a<(b.length-s); a++)
{
num2.append(b[s]);
s++;
}
}
String c1 = num1.toString();
String c2 = num2.toString();
double x = Double.parseDouble(c1);
double y = Double.parseDouble(c2);//this is the error producing line
double z = x+y;
return z;
}
这是我的方法调用:
public void actionPerformed(ActionEvent e)
{
//omitted irrelevant code
if(e.getSource()==equals)
{
s1 = tf1.getText();
s2 = " = ";
s3 = s1+s2;
tf1.setText(s3);
if(p==1)//p is my int that detects which operator to use
{
s1 = tf1.getText();
s2 = Double.toString(calculateAdd(s1));//I call the method here
s3 = s1+s2;
tf1.setText(s3);
答案 0 :(得分:3)
由于g
为true
,因此该部分永远不会执行:
else
{
for(int a = 0; a<(b.length-s); a++)
{
num2.append(b[s]);
s++;
}
}
因此永远不会填充num2
,并且您会尝试解析空字符串。