Search code examples
javaswingfocusjtextfield

How to make JTextField lose its focus?


Exacly as stated in the subject how to make JTextField lose its focus?

Something like:

jtf.setFocus(false)


Solution

  • You could simply transfer focus to another component:

    myOtherComponent.requestFocusInWindow();