button.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
String EditableText = textField.getText(); //gets the text from a text box
System.out.println(EditableText);//prints it
wordParser.mainProcessor(EditableText);//sends it for processing for the main app
}
});
但是当我运行它时,在文本框中输入一些文本并单击它在控制台中循环和垃圾邮件的按钮
我猜动作监听器有问题
发生的另一件事是按钮变灰并且在我停止程序之前我无法恢复它