我是编程世界的新手。好吧,我试图使用apache-poi库读取excel文件(5行,5列)。我实际上有两个同样问题的实现。 在第一个代码片段中,我只读取了我的excel文件并将其打印到控制台中。
但是现在我试图将读取的excel数据保存到数组中。所以我想在动态获取excel行和列大小后设置数组大小。但令我惊讶的是,当我执行我的第二个代码片段时,似乎“while(cellIterator.hasNext()”连续迭代,即使我的输入excel文件中只有5行,5个cols。请指导我哪里出错了
由于 侯赛因 代码段1(按预期工作)
public static void main(String args[]) {
readFile(ConfigReader.readConfigValues("XLS-path"),
ConfigReader.readConfigValues("SheetName"));
}
public static void readFile(String filePath, String sheetName) {
try {
FileInputStream file = new FileInputStream(new File(filePath));
// Get the workbook instance for XLS file
HSSFWorkbook workbook = new HSSFWorkbook(file);
// Get first sheet from the workbook
HSSFSheet sheet = workbook.getSheet(sheetName);
// Iterate through each rows from first sheet
Iterator<Row> rowIterator = sheet.iterator();
while (rowIterator.hasNext()) {
Row row = rowIterator.next();
// For each row, iterate through each columns
Iterator<Cell> cellIterator = row.cellIterator();
while (cellIterator.hasNext()) {
Cell cell = cellIterator.next();
switch (cell.getCellType()) {
case Cell.CELL_TYPE_BOOLEAN:
System.out.print(cell.getBooleanCellValue() + "\t\t");
break;
case Cell.CELL_TYPE_NUMERIC:
System.out.print(cell.getNumericCellValue() + "\t\t");
break;
case Cell.CELL_TYPE_STRING:
System.out.print(cell.getStringCellValue() + "\t\t");
break;
}
}
System.out.println("");
}
file.close();
FileOutputStream out = new FileOutputStream(new java.io.File(
"G:\\test1.xls"));
workbook.write(out);
out.close();
} catch (FileNotFoundException e1) {
e1.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
代码段2(未按预期工作)
public static void main(String args[]) {
readFile(ConfigReader.readConfigValues("XLS-path"),
ConfigReader.readConfigValues("SheetName"));
}
public static void readFile(String filePath, String sheetName) {
try {
FileInputStream file = new FileInputStream(new File(filePath));
// Get the workbook instance for XLS file
HSSFWorkbook workbook = new HSSFWorkbook(file);
// Get first sheet from the workbook
HSSFSheet sheet = workbook.getSheet(sheetName);
// Iterate through each rows from first sheet
Iterator<Row> rowIterator = sheet.iterator();
String[][] excelArray = null;
excelArray = new String[getRowCount(rowIterator, excelArray)][];
file.close();
FileOutputStream out = new FileOutputStream(new java.io.File(
"G:\\test1.xls"));
workbook.write(out);
out.close();
} catch (FileNotFoundException e1) {
e1.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
public static int getRowCount(Iterator<Row> rowIterator,
String[][] excelArray) {
int sizeArrayRow = 0;
while (rowIterator.hasNext()) {
Row row = rowIterator.next();
excelArray[sizeArrayRow] = new String[getColCount(row)];
sizeArrayRow++;
}
return sizeArrayRow;
}
public static int getColCount(Row row) {
int sizeArrayCol = 0;
// For each row, iterate through each columns
Iterator<Cell> cellIterator = row.cellIterator();
while (cellIterator.hasNext()) {
sizeArrayCol++;
}
return sizeArrayCol;
}
答案 0 :(得分:2)
要了解Java迭代器的工作原理,请阅读:http://www.tutorialspoint.com/java/java_using_iterator.htm 特别要注意hasNext()和next()
之间的区别您正在检查:
while (cellIterator.hasNext())
但是你永远不会从该迭代器中“读取”任何东西,所以它保持在当前位置并且对于hasNext保持返回true。 你可以用以下方式推动它:
cellIterator.next();
另外,我认为代码很混乱,难以理解。而不是String数组,请考虑使用List。这样,您可以在不事先了解其大小的情况下填充它。
答案 1 :(得分:1)
public class ExcelToArrayConverter {
public String[] excelvalue(String columnWanted,int sheet_no){
int i=0;
String[] column_content_array =new String[140];
try{
int instindicator=-1;
InputStream fileIn = this.getClass().getClassLoader().getResourceAsStream("db.xls");
POIFSFileSystem fs = new POIFSFileSystem(fileIn);
HSSFWorkbook filename = new HSSFWorkbook(fs);
HSSFSheet sheet = filename.getSheetAt(sheet_no); // in the row 0 (which is first row of a work sheet) // search for column index containing string "Inst_Code"
Integer columnNo = null;
Integer rowNo = null;
List<Cell> cells = new ArrayList<Cell>();
Row firstRow = sheet.getRow(0);
for (Cell cell : firstRow) {
if (cell.getStringCellValue().equals(columnWanted)) {
columnNo = cell.getColumnIndex();
rowNo=cell.getRowIndex();
}
}
if (columnNo != null) {
for (Row row : sheet) {
Cell c = row.getCell(columnNo);
String cell_value=""+c;
cell_value=cell_value.trim();
try{
if((!cell_value.equals(""))&&(!cell_value.equals("null"))&&(!cell_value.equals(columnWanted))){
column_content_array[i]=cell_value;
i++;
}}
catch(Exception e){
}
}
return column_content_array;
}}
catch(Exception ex){
return column_content_array;
}
return column_content_array;
}}
This method will convert any specific column of a specific sheet to an array.