如何用鼠标右键单击在交互式Jtable中打开文件选择器

时间:2018-09-25 15:52:16

标签: java swing jtable jfilechooser mouse-listeners

我正在使用基于代码here的交互式JTable。

我需要的是双击编辑单元格后,
如果单击鼠标右键,它将打开文件选择器以选择文件
否则,只需双击第一列中的所有单元格,然后手动输入路径。

我添加了

TableColumn waweletFileColumn = table.getColumnModel().getColumn(InteractiveTableModel.TITLE_INDEX );
    waweletFileColumn.setCellEditor(new FileChooserCellEditor());

在交互式表格中修改单元格的行为。

    public class FileChooserCellEditor extends DefaultCellEditor implements TableCellEditor {

    /** Editor component */
    private JTextField tf;
    /** Selected file */
    private String file = "";

    private String type;

    /**
     * Constructor.
     */
    public FileChooserCellEditor(String type) {
        super(new JTextField());
        this.type = type;
        // Using a JButton as the editor component
        tf = new JTextField();
        tf.setBorder(null);
    }

@Override
public Object getCellEditorValue() {
    return file;
}

@Override
public Component getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int column) {

    file = myFileChooser(type);
    fireEditingStopped();

    tf.setText(file);
    return tf;
}

public static String myFileChooser() {

        JFileChooser chooser = new JFileChooser();

        chooser.setCurrentDirectory( new File(System.getProperty("user.home"));
        chooser.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES );
        chooser.setDialogTitle("Choose" );

        chooser.setAcceptAllFileFilterUsed(true);

        chooser.setDialogType(JFileChooser.OPEN_DIALOG);

        if (chooser.showOpenDialog(null) == JFileChooser.APPROVE_OPTION) {
          direct = chooser.getSelectedFile();
          return chooser.getSelectedFile().toString();
        }

        return "";

        }
}

但是,如果单击鼠标右键,否则如何修改代码以打开文件选择器呢?

1 个答案:

答案 0 :(得分:0)

  

但是,如果单击鼠标右键,否则如何修改代码以打开文件选择器呢?

摆脱自定义单元格编辑器。

相反,您只使用默认的编辑器,但需要在编辑器的文本字段中添加MouseListener来处理右键单击并显示JFileChooser。

所以基本逻辑可能类似于:

JTextField editField = new JTextField()
editfield.addMouseListener(...);
DefaultCellEditor editor = new DefaultCellEditor( editField );
table.getColumnModel().getColumn(???).setCellEditor(editor);

然后将您的逻辑添加到MouseListener以显示JFileChooser。关闭文件选择器后,您将获得所选文件并更新文本字段。像这样:

JTextField textField = (JTextField)e.getSource();
JFileChooser fc = new JFileChooser(...);
int returnVal = fc.showOpenDialog(textField);

if (returnVal == JFileChooser.APPROVE_OPTION) 
{
        File file = fc.getSelectedFile(); 
        textField.setText( file.toString() );
}