如何检查按下的键是否为CapsLk。

    if(e2.getKeyChar() == ?)
{

text_area.setText("CapsLk is pressed")

}

最佳答案

if(e2.getKeyCode() == KeyEvent.VK_CAPS_LOCK){
    text_area.setText("CapsLk is pressed");
}

关于java - 如果按下的按钮是CapsLk,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39245258/

10-11 16:59