由于我无法找到的原因,SendListener无法正常工作。 我的Frame.class: http://pastebin.com/N28dFzYN 我的SendListener.class: http://pastebin.com/q75EVZtd
我不明白。其他一切都很好。
答案 0 :(得分:1)
您只是不将听众添加到按钮。
从Frame.java
中的第119行开始,您需要:
//Console
sendCommand = new JButton("Send");
sendCommand.addActionListener(sender);
sendCommand.setVisible(true);