将JTextField或JComboBox的光标移动到开头

时间:2012-03-31 08:42:29

标签: java swing cursor jcombobox jtextfield

我有JTextField一些文字。当我单击文本字段时,光标移动到字段的末尾。我希望光标在聚焦时移动到字段的开头。

我对可编辑的JComboBox感到同样的问题。

如何在焦点上实现此光标定位?

3 个答案:

答案 0 :(得分:5)

/**
* On gaining focus place the cursor at the start of the text.
*/
public class CursorAtStartFocusListener extends FocusAdapter {

    @Override
    public void focusGained(java.awt.event.FocusEvent evt) {
        Object source = evt.getSource();
        if (source instanceof JTextComponent) {
            JTextComponent comp = (JTextComponent) source;
            comp.setCaretPosition(0);
        } else {
            Logger.getLogger(getClass().getName()).log(Level.INFO,
                    "A text component expected instead of {0}",
                    source.getClass().getName());
        }
    }
}

jTextField1.addFocusListener(new CursorAtStartFocusListener());
jComboBox1.getEditor().getEditorComponent().addFocusListener(new CursorAtStartFocusListener());
// Only one instance of CursorAtStartFocusListener needed.

答案 1 :(得分:2)

您可以使用此命令

  

comp.setCaretPosition(索引);

指数是插入位置。

答案 2 :(得分:0)

我认为这可能是您正在寻找的:

JTextField t = new JTextField();
t.setHorizontalAlignment(JTextField.LEFT);