81,116
社区成员
发帖
与我相关
我的任务
分享cell = row.getCell((short) 6);
String a = cell.getStringCellValue();
Cell[] cell = rs.getRow(i);
for(int j = 0; j < cell.length; j++) {
System.out.println(cell[i].getContents());
}
Cell[] cell = rs.getRow(i);
String[] results = new String[cell.length];
for(int j = 0; j < cell.length; j++) {
System.out.println(cell[i].getContents());
}