原因: 点击button会让jframe失去焦点,然后键盘监听不起作用解决: 让jframe重新获取焦点就行了 jf.setFocusable(true); // JFrame jf = new JFrame("美女");