需要帮助让这个简单的华氏度到摄氏度应用程序在 java 中工作

Need help getting this simple Fahrenheit to Celsius application working in java

我需要此应用程序将用户在 JTextField 中输入的数字转换为 摄氏度 并将其显示在 JLabel 中。解析输入双精度的数据似乎有问题?这是许多错误中的一个。 谁能帮我弄清楚出了什么问题? (我在测试时只在文本字段中输入了双精度值,但它仍然不会将其更改为双精度值。)

public class TempConvertGUI extends JFrame{
    private JLabel result;
    private final JTextField input;

    public TempConvertGUI()
    {
        super("Fahrenheit to Celsius Application");

        setLayout(new FlowLayout());

        //TempConvert convert=new TempConvert();

        input=new JTextField(10);
        input.setToolTipText("Enter degrees in fahrenheit here.");
        input.addActionListener(new ActionListener()
        {
            private double temp;
            private String string;

            @Override
            public void actionPerformed(ActionEvent event) {
                if(event.getSource()==input)
                {
                    remove(result);
                    if(event.getActionCommand()==null)
                        result.setText(null);
                    else
                    {
                        temp=Double.parseDouble(event.getActionCommand());
                        string=String.format("%d degrees Celsius", convertToCelsius(temp));
                        result.setText(string);;
                    }
                    add(result);
                }
            }

        });
        add(input);

        result=new JLabel();
        add(result);

    }

    private double convertToCelsius(double fahrenheit)
    {
        return (5/9)*(fahrenheit-32);
    }
}

您似乎遇到了这个异常

java.util.IllegalFormatConversionException: d != java.lang.Double

也是因为这行代码

string=String.format("%d degrees Celsius", convertToCelsius(temp));

%d表示整数;你想使用 %f 作为双倍(convertToCelsius returns 双倍)。

所以改成

string=String.format("%f degrees Celsius", convertToCelsius(temp));

而不是 temp=Double.parseDouble(event.getActionCommand());,您应该解析来自 input.getText() 的输入。

  1. 从未设置 JTextField 的 ActionCommand,因此它将是一个空字符串。如果要解析 JTextField 中的数据,则获取其值并解析该值(例如 temp=Double.parseDouble(input.getText());
  2. 参见 API for formatting strings - 使用 %f 解析浮点值
  3. 无需在 ActionPerformed 中添加和删除 result JLabel,它已经添加到 UI - 只需将其设置为文本
  4. (5/9) 是整数数学,如果您需要浮点数学,请将其中一个数字指定为正确的数据类型:(5/9d)