判断jtable是否被编辑过

JTable tabledata = new JTable();

 ListSelectionModel de = tabledata.getSelectionModel();// 如果jtable没有被编辑过而执行stopCellEditing方法会抛出异常

 if (de.isSelectionEmpty());    //表示jtable没有被编辑过

你可能感兴趣的:(判断jtable是否被编辑过)