java jtable removeRow : java.lang.IndexOutOfBoundsException: Index: 1, Size: 1
问题 I'm removing a row in my JTable and i have this Exception : IndexOutOfBoundsException: Index: 1, Size: 1". This is my TableModel Classe: public Class MyTableModel extends AbstractTableModel { private static final long serialVersionUID = -912060609250881296L; private ResultSet rs; private int rowCount; private int columnCount; private ArrayList<Object[]> data=new ArrayList<Object[]>(); private ArrayList<TableModelListener> listeners = new ArrayList<TableModelListener>(); public