光标在jtable中自动闪烁而无需单击鼠标

cursor blinking automatically in jtable without mouse clicking

我在 JTable 中遇到光标问题。 我试图在论坛中找到答案,但找不到我期望的答案。 这是我的 运行nable Java:

import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.border.EmptyBorder;
import javax.swing.table.AbstractTableModel;
import javax.swing.JLabel;
import java.awt.Font;
import javax.swing.SwingConstants;
import javax.swing.JTable;

public class Fpos extends JFrame {

        public static void main(String[] args) {
                EventQueue.invokeLater(new Runnable() {
                        public void run() {
                                try {
                                    Fpos frame = new Fpos();
                                    frame.setVisible(true);
                                    frame.setLocationRelativeTo(null);  //make frame center of screen                   
                                } catch (Exception e) {
                                    e.printStackTrace();
                                }
                        }
                });
        }


        public Fpos() {
                //create Jpanel
                setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                setBounds(10, 10, 1300, 700);
                JPanel contentPane = new JPanel();
                contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
                setContentPane(contentPane);
                contentPane.setLayout(null);
                //create label TOTAL
                JLabel lblTotal = new JLabel("TOTAL : Rp.");
                lblTotal.setFont(new Font("Wide Latin", Font.PLAIN, 30));
                lblTotal.setBounds(33, 25, 312, 31);
                contentPane.add(lblTotal);
                //create label Total Amount
                JLabel lblNewLabel = new JLabel("123,456,789");
                lblNewLabel.setHorizontalAlignment(SwingConstants.RIGHT);
                lblNewLabel.setFont(new Font("Wide Latin", Font.PLAIN, 60));
                lblNewLabel.setBounds(571, 6, 659, 61);
                contentPane.add(lblNewLabel);
                //create jtable in scrollpane
                 JTable table = new JTable(new MyTableModel());                 
                 JScrollPane sp=new JScrollPane(table);
                 sp.setBounds(20,76,1240,572);
                 contentPane.add(sp);            
        }

    //tablemodel
    class MyTableModel extends AbstractTableModel {
            private String[] columnNames = {"PLU", "NAME", "UOM", "QTY", "PRICE","AMOUNT"};
            private Object[][] data = {{"", "", "", new Double(0), new Integer(0), new Integer(0)}};    
            public int getColumnCount() {return columnNames.length;}
            public int getRowCount() {return data.length;}
//          public String getColumnName(int col) {return columnNames[col];}
            public Object getValueAt(int row, int col) {return data[row][col];}
            //auto formating table: string=left alignment, numeric=right alignment, checkbox=check box not true/false
            public Class getColumnClass(int c) {return getValueAt(0, c).getClass();}
            //make table editable only for just first column        
            public boolean isCellEditable(int row, int col) {if (col == 0) {return true;} else{return false;}}
            //make table can change value         
            public void setValueAt(Object value, int row, int col) {
                    data[row][col] = value;
                    fireTableCellUpdated(row, col);
            }
    }

}

输出很好,但 table 尚未准备好输入。 我必须双击第一行的 PLU 列才能准备好输入。 我想要的是 运行 光标在第一行 PLU 列闪烁,无需双击即可输入。

关于如何实现这一点有什么建议吗?

基础是:

table.changeSelection(0, 0, false, false);

if (table.editCellAt(0, 0))
{
    Component editor = table.getEditorComponent();
    editor.requestFocusInWindow();
    //((JTextComponent)editor).selectAll();
}

changeSelection(...) 就像单击该行(因此整行都突出显示),然后 editCellAt(...) 将单元格置于编辑模式。

然后您需要将焦点放在编辑器上,并且可以选择 select 所有文本,以便在您键入时替换它。

编辑:

The cursor is still not blinking

将代码包装在 SwingUtilities.invokeLater(...) 中以确保代码在框架可见后执行:

SwingUtilities.invokeLater(new Runnable()
{
    public void run()
    {
        table.changeSelection(0, 1, false, false);

        if (table.editCellAt(0, 1))
        {
            Component editor = table.getEditorComponent();
            editor.requestFocusInWindow();
            //((JTextComponent)editor).selectAll();
        }
    }
});

是的,添加的代码使光标在选定的单元格 n 上闪烁,使其准备好输入。

非常感谢Camickr。

我把可运行的代码放在下面,以防有人碰巧遇到同样的情况。

import java.awt.Component;

import java.awt.EventQueue;

import javax.swing.JFrame;

import javax.swing.JPanel;

import javax.swing.JScrollPane;

import javax.swing.border.EmptyBorder;

import javax.swing.table.AbstractTableModel;

import javax.swing.JLabel;

import java.awt.Font;

import javax.swing.SwingConstants;

import javax.swing.SwingUtilities;

import javax.swing.JTable;

public class test extends JFrame {

    public static void main(String[] args) {
            EventQueue.invokeLater(new Runnable() {
                    public void run() {
                            try {
                                test frame = new test();
                                frame.setVisible(true);
                                frame.setLocationRelativeTo(null);      //make frame center of screen                   
                            } catch (Exception e) {
                                e.printStackTrace();
                            }
                    }
            });
    }


    public test() {
            //create Jpanel
            setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            setBounds(10, 10, 1300, 700);
            JPanel contentPane = new JPanel();
            contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
            setContentPane(contentPane);
            contentPane.setLayout(null);
            //create label TOTAL
            JLabel lblTotal = new JLabel("TOTAL : Rp.");
            lblTotal.setFont(new Font("Wide Latin", Font.PLAIN, 30));
            lblTotal.setBounds(33, 25, 312, 31);
            contentPane.add(lblTotal);
            //create label Total Amount
            JLabel lblNewLabel = new JLabel("123,456,789");
            lblNewLabel.setHorizontalAlignment(SwingConstants.RIGHT);
            lblNewLabel.setFont(new Font("Wide Latin", Font.PLAIN, 60));
            lblNewLabel.setBounds(571, 6, 659, 61);
            contentPane.add(lblNewLabel);
            //create jtable in scrollpane
             JTable table = new JTable(new MyTableModel());                 
             JScrollPane sp=new JScrollPane(table);
             sp.setBounds(20,76,1240,572);
             contentPane.add(sp);
            //make cursor blinking on selected cell
             SwingUtilities.invokeLater(new Runnable(){
                    public void run() {
                          table.changeSelection(0, 0, false, false);
                          if (table.editCellAt(0, 0)){
                              Component editor = table.getEditorComponent();
                              editor.requestFocusInWindow();
                              //((JTextComponent)editor).selectAll();
                          }
                    }
            });

    }

//tablemodel
class MyTableModel extends AbstractTableModel {
        private String[] columnNames = {"PLU", "NAME", "UOM", "QTY", "PRICE","AMOUNT"};
        private Object[][] data = {{"", "", "", new Double(0), new Integer(0), new Integer(0)}};    
        public int getColumnCount() {return columnNames.length;}
        public int getRowCount() {return data.length;}
//          public String getColumnName(int col) {return columnNames[col];}
        public Object getValueAt(int row, int col) {return data[row][col];}
        //auto formating table: string=left alignment, numeric=right alignment, checkbox=check box not true/false
        public Class getColumnClass(int c) {return getValueAt(0, c).getClass();}
        //make table editable only for just first column        
        public boolean isCellEditable(int row, int col) {if (col == 0) {return true;} else{return false;}}
        //make table can change value         
        public void setValueAt(Object value, int row, int col) {
                data[row][col] = value;
                fireTableCellUpdated(row, col);
        }
}

}