我希望连接方法returnedConversion
,以便在用户选择要转换为哪个临时比例后,将结果返回到ActionListener
。我知道代码有点脱节,至少可以说,所以请忽略所有注释掉的区域(除非你能指出一个我应该注意的区域。
如何将方法returnedConversion
中的代码连接到ActionListener
,以便代码正常运行?另外,我是否正确地将JTextField
框中的输入转换为双精度,然后将其适当地转换回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);
}
}
答案 0 :(得分:6)
首先,请阅读"Implementing Listeners for Commonly Handled Events"。这将使您了解如何使用Swing
如果我理解正确,这里想要实现:
JComboBox
选择转化选项。JTextField
initialTemp
中输入值
Convert
JButton
,然后您想捕获该事件,隐藏第一个JTextField
中的文本,并在第二个JTextField
中显示转换后的结果。< / LI>
因此,作为第一步,您希望实现一个执行转换的方法,即当用户按下Convert
按钮时,将调用此方法,它将获取第一个{{1}的值},执行转换并将其更新为第二个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
我希望这能为您提供正确的指示,帮助您解决代码问题。
另外,作为最后一点,您可能需要阅读"Threads and Swing"和"Threading with Swing"以了解如何启动Swing应用程序
答案 1 :(得分:2)
第49行:
String applyIt = returnedConversion(toConvert);
这里你应该将一个字符串传递给returnedConversion
方法,但是你没有声明并初始化toConvert
变量为字符串。
第50行:
convertedTemp.returnedConversion();
convertedTemp
的类型为JTextField。因此,您无法在此处访问未定义的方法returnedConversion()
。如果您要在convertedTemp
JTextField中显示文字,则应使用convertedTemp.setText(applyIt)
。