我在面板中有JTable
和表格模型。我在表格中有复选框,可以控制另一行是可编辑的,其他行是食物对象的数据。但是当我点击复选框时,我会在java.lang.IndexOutOfBoundsException
行获得this.bools.set(row, (Boolean)vlaue) ;
例外。
为什么我会收到此错误?
import com.sun.org.apache.xpath.internal.operations.Bool;
import Food;
import FoodDAO;
import javax.swing.*;
import javax.swing.table.AbstractTableModel;
import javax.swing.table.TableCellRenderer;
import java.awt.*;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Vector;
/**
* Created by debian on 8/20/16.
*/
public class FoodListPanel extends JPanel{
JTable jTable;
FoodTableModel fm;
public FoodListPanel() {
try {
fm = new FoodTableModel(FoodDAO.getAllFoodsFromDB(), new ArrayList<Boolean>(), new ArrayList<Integer>());
jTable = new JTable(fm) {
public boolean isCellEditable(int data, int columns) {
if(columns<5){
return false;
}
else if(columns ==5){
return true;
}
else if(columns ==6){
if(getValueAt(data, 5)==Boolean.FALSE){
return false;
}
else {
return true;
}
}
else{
return true;
}
}
public Component prepareRenderer(TableCellRenderer r, int data, int columns) {
Component c = super.prepareRenderer(r, data, columns);
return c;
}
};
jTable.setPreferredScrollableViewportSize(new Dimension(650, 420));
jTable.setFillsViewportHeight(true);
JScrollPane jScrollPane = new JScrollPane(jTable);
add(jScrollPane);
} catch (SQLException e) {
e.printStackTrace();
}
}
class FoodTableModel extends AbstractTableModel {
protected String[] cols = {"نامغذا", "دستهبندی", "قیمت", "توضیحات", "عکس" , "انتخاب", "تعداد"};
protected Class[] colClasses = {String.class, Integer.class, String.class, String.class,
JLabel.class, Boolean.class, Integer.class};
ArrayList<Food> al;
ArrayList<Boolean> bools;
ArrayList<Integer> vals;
public FoodTableModel(ArrayList<Food> foods, ArrayList<Boolean> boxes,ArrayList<Integer> val) {
al = new ArrayList<Food>();
bools = new ArrayList<>(al.size());
for(Boolean b: bools){
b=Boolean.FALSE;
}
vals = new ArrayList<Integer>(al.size());
al.addAll(foods);
bools.addAll(boxes);
}
////// TODO: 8/20/16 make dynamic from DB
public int getColumnCount (){return cols.length;}
public int getRowCount (){return al.size();}
public String getColumnName(int col) { return cols[col]; }
public Class getColumnClass(int col) { return colClasses[col]; }
public Object getValueAt(int row, int col){
switch (col) {
case 0:
return al.get(row).getName();
case 1:
return al.get(row).getType();
case 2:
return al.get(row).getPrice();
case 3:
return al.get(row).getDiscreption();
//// TODO: 8/20/16 CASE 4 + PICTURE
default:
return null;
}
}
public void setValueAt(Object vlaue, int row, int column){
if(column==5){
this.bools.set(row, (Boolean)vlaue) ;
}else if (column==6){
this.vals.set(row, (Integer)vlaue);
}
}
/*public void setCols(String[] columns){
cols = columns;
}
public void setClasses(Class[] classes){
colClasses = classes;
}*/
}
}
答案 0 :(得分:1)
你的bool ArrayList<Boolean>
是完全空的,在上面的代码中永远不会是空的(你在哪里填充除了空的ArrayLists以外的任何东西?),所以每当你试图通过它访问它时,{ {1}}你将得到这个例外。解决方案:在使用它之前填充它,并在调用ArrayList上的set方法之前测试它是否已填充。如果大小为0或者您尝试设置不存在的项目,请使用ArrayList的bools.set(row, (Boolean)vlaue)
方法。
你当然知道这个:
add(...)
如果bools.size()为0(它是),
什么都不做
答案 1 :(得分:1)
原因是您尝试在ArrayList中的位置设置一个大于列表大小的值。最初使用大小为0创建ArrayList。请阅读有关ArrayList的文档和教程。
代码中还存在其他问题,例如当您尝试将值赋给布尔值时:
al = new ArrayList<Food>();
bools = new ArrayList<>(al.size());
for(Boolean b: bools){
b=Boolean.FALSE;
}
这基本上什么也没做。首先,列表在创建时为空,其次,赋值仅为b赋值,但不会改变bool中任何元素的内容,正如您所期望的那样。