gpt4 book ai didi

java - 实现与 ActionListener 交互的方法?

转载 作者:行者123 更新时间:2023-12-03 06:48:10 25 4
gpt4 key购买 nike

我想连接方法returnedConversion,以便在用户选择要转换的温度标度后将结果返回到ActionListener。我意识到代码至少可以说有点脱节,所以请忽略所有注释掉的区域(除非您能指出我应该注意的区域。

如何将该代码从方法 returnedConversion 连接到 ActionListener 以便代码正确运行?另外,我是否正确地将 JTextField 框中的输入转换为 double ,然后将其适本地转换回 String 以将其传递回第二个 JTextField 盒子?

package temperatureConverter;

import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JTextField;

public class TempConverter extends JFrame {
private JComboBox firstComboBox;
private JComboBox secondComboBox;
private JTextField initialTemp;
private JTextField convertedTemp;
private JButton convertButton;
// private enum TempType { FAHRENHEIT, CELSIUS, KELVIN};
private static final String[] tempType = { "Fahrenheit", "Celsius",
"Kelvin" };
public static final String theInitialTempType = null;
public static final String theTempTypeToConvertTo = null;
public static final String theChosenTemp = null;
public static final String theNewTemp = null;

public TempConverter() {
super("Temperature Converter");
setLayout(new FlowLayout());

firstComboBox = new JComboBox(tempType);
firstComboBox.setMaximumRowCount(3);
firstComboBox.addActionListener(null);
add(firstComboBox);
secondComboBox = new JComboBox(tempType);
secondComboBox.setMaximumRowCount(3);
secondComboBox.addActionListener(null);
add(secondComboBox);
initialTemp = new JTextField("", 10);
initialTemp.addActionListener(null);
add(initialTemp);
convertedTemp = new JTextField("", 10);
convertedTemp.addActionListener(null);
add(convertedTemp);
convertButton = new JButton("Convert");
convertButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent event) {
String applyIt = returnedConversion(initialTemp.getText());
System.out.println(applyIt);
// convertedTemp.returnedConversion();
// ???????????????????????????????????????????
}
});
add(convertButton);
// String theInitialTempType = (String) firstComboBox.getSelectedItem();
// String theTempTypeToConvertTo = (String)
// secondComboBox.getSelectedItem();
// String theChosenTemp = initialTemp.getSelectedText();
// String theNewTemp = convertedTemp.getSelectedText();
}

// public class textHandler implements ActionListener
// {
// public void itemStateChanged (ActionEvent event)
// {
// double convertedNumberForTheChosenTemp =
// Double.parseDouble(theChosenTemp);
// double convertedNumberForTheNewTemp = Double.parseDouble(theNewTemp);
// String string1 = "";
// String string2 = "";
//
// if ( theInitialTempType == tempType[0] && theTempTypeToConvertTo ==
// tempType[1] )
//
// convertedNumberForTheNewTemp = (convertedNumberForTheChosenTemp - 32) * 5
// / 9;
// String result = String.valueOf(convertedNumberForTheNewTemp);
// convertedTemp.getSelectedText();
// }

// @Override
// public void actionPerformed (ActionEvent e) {
//
// }
// }
public String returnedConversion(String toConvert) {
double convertedNumberForTheChosenTemp = Double.parseDouble(theChosenTemp);
double convertedNumberForTheNewTemp = Double.parseDouble(theNewTemp);

if (theInitialTempType == tempType[0] && theTempTypeToConvertTo == tempType[1]) {
convertedNumberForTheNewTemp = (convertedNumberForTheChosenTemp - 32) * 5 / 9;
String result = String.valueOf(convertedNumberForTheNewTemp);
return result;
} else if (theInitialTempType == tempType[0] && theTempTypeToConvertTo == tempType[2]) {
convertedNumberForTheChosenTemp = (convertedNumberForTheChosenTemp + 459.67) / 1.8;
String result = String.valueOf(convertedNumberForTheNewTemp);
return result;

} else if (theInitialTempType == tempType[1] && theTempTypeToConvertTo == tempType[0]) {
convertedNumberForTheChosenTemp = (convertedNumberForTheChosenTemp * 1.8) + 32;
String result = String.valueOf(convertedNumberForTheNewTemp);
return result;
} else if (theInitialTempType == tempType[1] && theTempTypeToConvertTo == tempType[2]) {
convertedNumberForTheChosenTemp = convertedNumberForTheChosenTemp + 273.15;
String result = String.valueOf(convertedNumberForTheNewTemp);
return result;
} else if (theInitialTempType == tempType[2] && theTempTypeToConvertTo == tempType[0]) {
convertedNumberForTheChosenTemp = (convertedNumberForTheChosenTemp * 1.8) - 459.67;
String result = String.valueOf(convertedNumberForTheNewTemp);
return result;
} else if (theInitialTempType == tempType[2] && theTempTypeToConvertTo == tempType[1]) {
convertedNumberForTheChosenTemp -= 273.15;
String result = String.valueOf(convertedNumberForTheNewTemp);
return result;
}

return null;
}

public static void main(String[] args) {
TempConverter tempTest = new TempConverter();
tempTest.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
tempTest.setSize(300, 200);
tempTest.setVisible(true);
}
}

最佳答案

首先,请阅读 "Implementing Listeners for Commonly Handled Events" 。这将使您很好地了解如何在 Swing

中使用基本事件处理

如果我理解正确的话,这就是您想要实现的目标:

  • 用户使用您提供的 JComboBox 选择转换选项。
  • 用户在第一个名为 initialTempJTextField 中输入值
  • 用户按下Convert JButton,然后您想要捕获该事件,隐藏第一个JTextField中的文本并将转换后的结果显示在第二个 JTextField

因此,作为第一步,您需要实现一个进行转换的方法,即当用户按下 Convert 按钮时,将调用此方法并从第一个 中获取值。 code>JTextField,执行转换并将其更新为第二个 JTextField 中的文本值。您有一个名为 public String returnedConversion(String toConvert) 的方法,我建议对此进行一些更改:

public void returnedConversion(String initialValue){
//Step 1. Validate the input
//Step 2. Convert the value. You write your own logic taking into account the initialValue
// and the JComboBox conversion options
//Step 3. Set the text of the second JTextField to the converted value, using the method convertedTemp.setText(...)
}

现在,您希望在调用 Convert JButton 时调用此方法。因此,正如您所做的那样,您希望将一个 ActionListener 与其关联。现在你在那里做什么?嗯,像这样:

convertButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent event) {
returnedConversion(initialTemp.getText());
}
});

我希望这能为您提供正确的指导来帮助您解决代码问题。

最后一点,您可能想阅读 "Threads and Swing""Threading with Swing"了解如何启动 Swing 应用程序

关于java - 实现与 ActionListener 交互的方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12225388/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com