ユーザーが JFrame に入力するフォームがあり、収集したデータを別のクラスの JTable に書き込みます。
ユーザーが「送信」を選択すると、JFrameは閉じますが、プログラムは閉じないように構成しようとしています。これを達成するために必要なコマンドは何ですか?
送信ボタンのコードは次のとおりです。
JButton bMark = new JButton("Submit");
bMark.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
String start = tbStart.getText();
String end = tbEnd.getText();
String[] marking = {start, end, active, body, dysk, trem, brady};
//This is just for me to ensure the collected data is correct
System.out.println(marking[0] + " " +marking[1] + " " +marking[2] + " " +
marking[3] + " " + marking[4] + " " + marking[5] + " " + marking[6]);
//This is is the class the form data is being sent to
markTable.main(marking);
//This is where I would like the close the current window
}
});
bMark.setBounds(308, 191, 86, 23);
クラス名は createMark で、メソッドは public createMark です。
答えてくれた人、ありがとう
ジャレッド。