How to limit the number of characters entered in a JTextField?
Suppose I want to enter say 5 characters max. After that no characters can be entered into it.
|
|
http://www.rgagnon.com/javadetails/java-0198.html
Then
(first result from google) |
|||||||||||||
|
|
If you wanna have everything into one only piece of code, then you can mix tim's answer with the example's approach found on the API for JTextField, and you'll get something like this:
Then there is no need to add a Document to the JTextFieldLimit due to JTextFieldLimit already have the functionality inside. |
|||
|
|