Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my application four TextArea is there and I want to enter only four character in one Text area and cursor automatically move to next TestArea. Again when I enter four character in this TextArea then again cursor automatically move to next TextArea.

Example: At the time of installing Window XP it want "Key" and there are four section when you enter four character in first section then cursor automatically move to the next section.

Same thing I want in my application.

For this first of all I add CustomizedTextFields.jar and then created four IntegerField:

private IntegerField text1;
private IntegerField text2;
private IntegerField text3;
private IntegerField text4;

after this I show all these IntegerField on my frame.

Now I tried this code to send cursor to the next field but it's not working:

text1.addKeyListener(new KeyListener() {
            @Override
            public void keyTyped(KeyEvent e) {
                    int a2 = text1.getText().length();
                    if (a2 == 3) {
                        text2.getCursor();
                    }
            }

            @Override
            public void keyReleased(KeyEvent e) {
            }

            @Override
            public void keyPressed(KeyEvent e) {
            }
        });
share|improve this question
For better help sooner, post an SSCCE. – Andrew Thompson Mar 22 '12 at 9:21

5 Answers

up vote 6 down vote accepted

interesting enough question to try improving my shadowy knowledge of the text package :-)

There are two separate requirements here

  • restrict the lenght of the text: that's done with a DocumentFilter as @mKorbel already noted
  • automatically transferFocus to the next component after the max length is reached: turns out that can be done with a NavigationFilter

in code:

JComponent panel = new JPanel();
final int maxSize = 3;
for (int i = 0; i < 4; i++) {
    final JTextField field = new JTextField(5);
    NavigationFilter filter = new NavigationFilter() {

        @Override
        public void setDot(FilterBypass fb, int dot, Bias bias) {
            if (dot >= maxSize) {
                fb.setDot(0, bias);
                field.transferFocus();
                return;
            }
            fb.setDot(dot, bias);
        }

        @Override
        public void moveDot(FilterBypass fb, int dot, Bias bias) {
            if (dot >= maxSize) { 
                fb.setDot(0, bias);
                field.transferFocus();
                return;
            }
            fb.moveDot(dot, bias);
        }

    };
    field.setNavigationFilter(filter);
    ((AbstractDocument) field.getDocument()).setDocumentFilter(new DocumentSizeFilter(maxSize));
    panel.add(field);
}

The documentFilter is the one from the Swing Tutorial

share|improve this answer
@Vinit Vikash and this is answer to your question – mKorbel Mar 22 '12 at 11:43
@kleopatra : +1 for NavigationFilter. Actually , till today, this term was not in my knowledge :-) . Still reading about this, feels like what you had told is the way to go, since I was hoping that someone can put more light on this, that's why I posted the answer, else I never wanted to. – nIcE cOw Mar 22 '12 at 14:08
But, when I applied transferFocus() inside NavigationFilter, nothing changed, so If you may, post the whole code, I shall be really obliged. – nIcE cOw Mar 22 '12 at 14:10
@GagandeepBali that is the whole code - simply throw it into your favourite frame and run it :-) – kleopatra Mar 22 '12 at 14:15
Now it's working, LOL, last time it gave me all sorts of wicked errors. Just one thing, change the maxSize to 4, as OP wants for 4 Characters. Deleting my answer :-) – nIcE cOw Mar 22 '12 at 14:26
At the time of installing Window XP it want "Key" and there are four section 
when you enter four character in first section then cursor automatically move 
to the next section.
  1. add DocumentListener to the JTextComponents, for listening add DocumentFilter

  2. don't use KeyListener for JTextComponents, use only DocumentListener

  3. add required next JTextArea to the DocumentListener, if is there typed 4th. Char into JTextArea,

  4. notice, moving with Focus from one JTextArea to another would be better wrapped into invokeLater

share|improve this answer
import java.awt.BorderLayout;
import java.awt.GridLayout;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;

import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JTextField;

public class NextBox extends JTextField {
    private JComponent nextComponent;


    public NextBox() {
        addKeyListener(new KeyListener() {

            @Override
            public void keyTyped(KeyEvent e) {}

            @Override
            public void keyReleased(KeyEvent e) {
                // Check for the four characters. 
                if (getText().length() >= 4) {
                    nextComponent.requestFocus();
                }
            }

            @Override
            public void keyPressed(KeyEvent e) {}
        });
    }


    public static void main(String[] args) {

        JFrame frame = new JFrame("Debug Frame");
        frame.setSize(400, 80);
        frame.setLayout(new GridLayout(1,5));
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        NextBox box1 = new NextBox();
        NextBox box2 = new NextBox();
        NextBox box3 = new NextBox();
        NextBox box4 = new NextBox();
        JButton button1 = new JButton("Done");

        box1.setNextComponent(box2);
        box2.setNextComponent(box3);
        box3.setNextComponent(box4);
        box4.setNextComponent(button1);

        frame.add(box1);
        frame.add(box2);
        frame.add(box3);
        frame.add(box4);
        frame.add(button1);

        frame.setVisible(true); 
    }

    /**
     * @param nextComponent the nextComponent to set
     */
    public void setNextComponent(JComponent nextComponent) {
        this.nextComponent = nextComponent;
    }

    /**
     * @return the nextComponent
     */
    public JComponent getNextComponent() {
        return nextComponent;
    }
}
share|improve this answer
don't use keyListeners at all ... especially not for validating text input, instead see @mKorbel's answer. And don't add unnecessary coupling: instead of hard-coding nextComponent, call transferFocus on the current – kleopatra Mar 22 '12 at 10:41
Hi, Thanks for the feedback. If you don't mind, why should I avoid keyListeners? Is there a simple answer? Thanks – Reg Mar 22 '12 at 10:51
@reg : In Swing we try to do KeyBinding, and Moreover, always prefer requestFocusInWindow() over requestFocus() , Moreover, always try to use tArea.getDocument().getLength() over tArea.getText().length() :-) – nIcE cOw Mar 22 '12 at 11:12
1  
the general rule is to always use the highest abstraction available - keyListeners are waaaayyy down :-) Most of the time they don't fulfill the requirement completely (f.i. always missing c&p), are overly limited (f.i. only working if the component is focused). – kleopatra Mar 22 '12 at 11:45
aahhhh! Great! Thank you! But now... I will have to change some code... :P – Reg Mar 22 '12 at 12:04

Replace text2.getCursor() with text2.requestFocus().

getCursor() is for retrieving the shape of the mouse pointer when hovering over a component.

Also, with this method it is still possible to enter more than 4 chars in a field, for example by pasting from clipboard. If you want to block that, you would need to check if text entered is longer than 4 chars, and if so, take only first 4 chars from it.

share|improve this answer

Something like this should work:

text1.addKeyListener(new KeyAdapter(){
          public void keyPressed(KeyEvent e){
             String value=text1.getText();
             if(value.length()==4){
             text2.requestFocus();
          }
}

Where text2 is your next textfield

share|improve this answer
1  
don't use keyListeners at all ... especially not for validating text input, instead see @mKorbel's answer – kleopatra Mar 22 '12 at 10:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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