确定表列的数据类型

Determinate TableColumn's data type

例如我有这个随机 table:

如何确定每一列的数据类型:
第一列包含字符串类型的数据。
第二列包含 Double 类型的数据
第三列包含字符串类型的数据。

试试下面...

    //creating a table
    MyTableModel mod = new MyTableModel(data, columnNames);
    JTable table = new JTable(mod);
    table.setVisible(true);
    table.getColumnClass(1); // will return the data type class of first column
    table.isCellEditable(1, 0);