我有一个JTextField,当我专注于它时想记录keyEvent。 这并不难,我已经可以打印出除“ TAB”以外的所有键名(例如“ F1”,“ ESCAPE”,“ A”,“ M”)。
问题是,当我按“ TAB”键时焦点会改变,而当我按“ BACKSPACE”键时字符将被删除。我想避免这种情况,但要保留keyEvent。因此,我想知道是否可以在按下按键时忽略按键功能。有什么想法吗?
答案 0 :(得分:0)
要从 JTextField 中消除Tab-Away功能,您需要将其 setFocusTraversalKeysEnabled 属性设置为 false >。完成此操作后,通过单击TAB(或SHIFT-TAB)键,不会从JTextField中失去焦点,并且可以在JTextField的 KeyPressed < / strong>事件。
从JTextField删除Backspace / Delete功能的最简单方法是使用自定义DocumentFilter。通过使用空方法覆盖过滤器的 remove()方法,可以有效消除Backspace或Delete键功能。
所有这些都可以使用下面提供的单个方法来完成。该方法允许您从提供的JTextField禁用或启用Tab和Backspace功能:
/**
* Disables (and can again Enable) the TAB (or SHIFT-TAB), BACKSPACE, and DELETE keys when
* used within the supplied JTextField.<br><br>
*
* When the Tab key or Backspace key is hit then it can be detected within the
* JTextField's KeyPressed Event by way of:<pre>
*
* if (event.getKeyCode() == KeyEvent.VK_TAB) {
* System.out.println("TAB Key Pressed!");
* }
* else if (event.getKeyCode() == KeyEvent.VK_BACK_SPACE) {
* System.out.println("BACKSPACE Key Pressed!");
* }</pre>
*
* @param jtextfield (JTextField) The desired JTextField variable name to
* control.<br>
*
* @param ON_OFF (Optional - Boolean - Default is true) If true (default) then
* Tab and Backspace is not allowed within the supplied JTextField. If false is
* supplied then Tab and Backspace is allowed within the supplied JTextField.
*/
public void noTABorBACKSPACE(JTextField jtextfield, boolean... ON_OFF) {
boolean on = true; // Default ON - No Tab Away and No Backspace allowed.
if (ON_OFF.length > 0) {
on = ON_OFF[0];
}
if (on) {
// Remove the TAB Away feature from the JTextField.
jtextfield.setFocusTraversalKeysEnabled(!on);
// Disable the Backspace feature from the JTextField.
// This is done with a custom Document Filter.
((AbstractDocument) jtextfield.getDocument()).setDocumentFilter(
new DocumentFilter(){
@Override
// By overriding the remove() method with an empty remove()
// method we effectively eliminate Backspace capabilities.
public void remove(DocumentFilter.FilterBypass fb, int i, int i1)
throws BadLocationException { }
}
);
}
else {
// Re-enable the TAB Away feature for the JTextField.
jtextfield.setFocusTraversalKeysEnabled(!on);
// Re-enable the Backspace feature for the JTextField.
// This is done by removing our custom Document Filter.
((AbstractDocument) jtextfield.getDocument()).setDocumentFilter(null);
}
}
如何使用此方法:
// To disable TAB and BACKSPACE
noTABorBACKSPACE(jTextField1);
// OR
// noTABorBACKSPACE(jTextField1, true);
// To re-enable TAB and BACKSPACE
noTABorBACKSPACE(jTextField1, false);
虽然在提供的JTextField中禁用了TAB和BACKSPACE功能,但是您可以确定是否通过JTextField的 KeyPressed 事件按下了这些特定的键,例如:
private void jTextField1KeyPressed(java.awt.event.KeyEvent evt) {
if (evt.getKeyCode() == KeyEvent.VK_TAB) {
System.out.println("TAB Key Hit!");
}
else if (evt.getKeyCode() == KeyEvent.VK_BACK_SPACE) {
System.out.println("BACKSPACE Key Hit!");
}
}
您会注意到,当JTextField的 setFocusTraversalKeysEnabled 属性设置为布尔值 true 时,您将无法检测到何时按下了TAB键,这是因为TAB密钥始终由KeyboardFocusManager使用。当 setFocusTraversalKeysEnabled 属性设置为布尔值 false 时,情况并非如此。
到目前为止,所提供的代码为删除Tab-Away和Backspace / Delete功能提供了方法,但是也许您想保持 Delete 键为活动状态,而只是删除TAB和BACKSPACE键的功能。如果是这种情况,则可以通过使用BACKSPACE键从JTextField的 KeyPressed 事件中执行此操作:
private void jTextField1KeyPressed(java.awt.event.KeyEvent evt) {
if (evt.getKeyCode() == KeyEvent.VK_TAB) {
System.out.println("TAB Key Hit!");
}
else if (evt.getKeyCode() == KeyEvent.VK_BACK_SPACE) {
System.out.println("BACKSPACE Key Hit!");
evt.consume(); // Consume the BACKSPACE Key Press.
}
}
要停止TAB键移动焦点,您仍然需要将 setFocusTraversalKeysEnabled 属性设置为 false 。