将Excel表格导入Jtable中的问题,错误java.lang.ArrayIndexOutOfBoundsException: 0 >= 0
代码如下:publicstaticbooleanreadExcel(Filefile,DefaultTableModeltableModel,JTablejTable){...
代码如下:
public static boolean readExcel(File file,DefaultTableModel tableModel,JTable jTable){
Workbook rwb = null;
Object[] object = new Object[jTable.getColumnCount()];
try{
FileInputStream is = new FileInputStream(file);
rwb = Workbook.getWorkbook(is);
Sheet st = rwb.getSheet(0);
System.out.println("列"+ st.getColumns());
System.out.println("行"+ st.getRows());
if(st.getRows()>2){
for(int t=tableModel.getRowCount()-1;t>=0;t--){
tableModel.removeRow(t);
}
for(int i = 0;i<st.getRows();i++){
for(int j = 0;j<st.getColumns();j++){
Cell c00 = st.getCell(j,i);
if(c00.getType() == CellType.LABEL)
{
LabelCell labelc00 = (LabelCell)c00;
object[j] = labelc00.getString();
jTable.setValueAt(object[j], i, j);
}else if(c00.getType() == CellType.NUMBER)
{
Double numd;
int numi;
NumberCell numc10 = (NumberCell)c00;
numd = new Double(numc10.getValue());
numi = numd.intValue();
object[j] = numi;
jTable.setValueAt(object[j], i, j);
}
}
System.out.println();
tableModel.addRow(object);
}
}
JOptionPane.showMessageDialog(null,"导入"+file.getName()+"成功","成功",JOptionPane.INFORMATION_MESSAGE);
}catch(FileNotFoundException e){ }
finally{
rwb.close();
}
return true;
}
可以将Excel中的数据打印出来,但是加到Jtable中就显示错误 展开
public static boolean readExcel(File file,DefaultTableModel tableModel,JTable jTable){
Workbook rwb = null;
Object[] object = new Object[jTable.getColumnCount()];
try{
FileInputStream is = new FileInputStream(file);
rwb = Workbook.getWorkbook(is);
Sheet st = rwb.getSheet(0);
System.out.println("列"+ st.getColumns());
System.out.println("行"+ st.getRows());
if(st.getRows()>2){
for(int t=tableModel.getRowCount()-1;t>=0;t--){
tableModel.removeRow(t);
}
for(int i = 0;i<st.getRows();i++){
for(int j = 0;j<st.getColumns();j++){
Cell c00 = st.getCell(j,i);
if(c00.getType() == CellType.LABEL)
{
LabelCell labelc00 = (LabelCell)c00;
object[j] = labelc00.getString();
jTable.setValueAt(object[j], i, j);
}else if(c00.getType() == CellType.NUMBER)
{
Double numd;
int numi;
NumberCell numc10 = (NumberCell)c00;
numd = new Double(numc10.getValue());
numi = numd.intValue();
object[j] = numi;
jTable.setValueAt(object[j], i, j);
}
}
System.out.println();
tableModel.addRow(object);
}
}
JOptionPane.showMessageDialog(null,"导入"+file.getName()+"成功","成功",JOptionPane.INFORMATION_MESSAGE);
}catch(FileNotFoundException e){ }
finally{
rwb.close();
}
return true;
}
可以将Excel中的数据打印出来,但是加到Jtable中就显示错误 展开
3个回答
展开全部
ArrayIndexOutOfBoundsException是在用非法索引访问数组时抛出的异常。如果索引为负或大于等于数组大小,则该索引为非法索引。也就是说访问的数组成员根本不存在,常称为数组越界。
根据提示,应该是你新建了一个动态长度的列表,而这个列表的长度为0,你引用了0位置,即第一位的字段引发的错误,请在新建动态长度列表前,先判断你给的参数值是否是<=0以防上出错。怀疑是你第一句
Object[] object = new Object[jTable.getColumnCount()];
中jTable.getColumnCount()为0值,也就是说新增了一个长度为0的数组。所以
object[j] = labelc00.getString();
这句在j=0的时候就报错ArrayIndexOutOfBoundsException0 >= 0了。
事例如下代码:
int i=0;
String [] strs = new String[i];
strs[0]=1;(报错)
修改为:
int i=0;
if(i>0)
{
String [] strs = new String[i]
strs[0]=1;
}
你可以再进入处理之前增加
if(jTable.getColumnCount()>0)的判断。
更多追问追答
追问
JTable.getColumnCount()打印出来有值,
追答
那看看你的Exception是在哪一行抛出的,看看那一行是否存在我说的这种情况。因为0>=0就是提示(索引位置)0>=(数组或列表长度)0
展开全部
数值越界了。你这个初始化的count是怎么来的?
Object[] object = new Object[jTable.getColumnCount()];
Excel还没有读进来。这个new出来的object是不是有可能比实际数据少。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你这是列表的列或者行在循环的时候超出了范围,你可以debug试试,看是什么列超出范围
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询