ユーザーが変換する温度スケールと変換元の温度スケールを選択returnedConversion
した後に結果が返されるように、メソッドを接続したいと思います。ActionListener
控えめに言ってもコードが少しバラバラになっていることに気付いたので、コメントアウトされた領域はすべて無視してください(注意すべき領域を指摘できない限り)。
returnedConversion
そのコードをメソッドからに接続しActionListener
て、コードが正しく動作するようにするにはどうすればよいですか?また、ボックスからの入力を正しくJTextField
doubleに変換してから、適切にaに変換しString
て、2番目の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);
}
}