由于找不到我的原因,SendListener无法正常工作。
我的Frame.class:
http://pastebin.com/N28dFzYN
我的SendListener.class:
http://pastebin.com/q75EVZtd

我不明白。其他一切都很好。

最佳答案

您只是不将监听器添加到按钮。
Frame.java中的第119行开始,您需要:

//Console
sendCommand = new JButton("Send");
sendCommand.addActionListener(sender);
sendCommand.setVisible(true);

09-12 11:16