username = new JTextField("");
    username.setBounds(330, 550, 230, 30);
    username.addActionListener(this);
    username.requestFocus(); // sets focus on JTextField
    this.add(username);
link|improve this question

i would like to limit the amount of imput that can be entered in this JTextField. All solutions are welcome, thank you in advance. – thynoob May 26 '11 at 23:35
using a custom Document is an old approach. Since JDK1.4 the preffered approach is to use a DocumentFilter. A filter can be used on any Document that extends AbstractDocument which potentially makes it more reusable. – camickr May 27 '11 at 0:38
feedback

2 Answers

up vote 4 down vote accepted
JTextField username = new JTextField("") ;
final int limit = 10;
username .setDocument(new PlainDocument(){
    @Override
    public void insertString(int offs, String str, AttributeSet a)
            throws BadLocationException {
        if(getLength() + str.length() <= limit)
            super.insertString(offs, str, a);
    }
});
link|improve this answer
what does @Override mean? – thynoob May 26 '11 at 23:55
1  
@thynoob I'm creating an anonymous class that extends PlainDocument and @Override is annotation that specify I'm overriding the base class's method. See this page for annotations in general and the @Override annotation. – Bala R May 26 '11 at 23:58
Ok..thanks for the help! ^.^ Do I need @Override in the source code to make it work? And after copy pasting what you suggested I discovered that it didn't work...do I have to add something else? – thynoob May 27 '11 at 0:00
@thynoob this is the code I tried and It works for me pastie.org/1978637 – Bala R May 27 '11 at 0:04
@Bala R Oh..turns out I forgot to import something... :P THANK YOU SO MUCH!!! IT WORKED!!! – thynoob May 27 '11 at 0:07
show 1 more comment
feedback

See the Swing tutorial on Implementing a Document Filter for a preferred working solution.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.