我有一个从excel文档中获取数据的java代码。 我想计算列数和总行数(在特定列中)。我怎样才能做到这一点?下面提供了Java代码和所需的o / p
(编辑):我应该做些什么修改来获得所需的o / p我应该写一个循环来获取列和行的计数,或者有一个方法来做同样的
期望的O / P
ColumnA ColumnB ColumnC
Vinayak James Dan
India US Denmark
Total number of Columns: 3
number of data in ColumnA:2
number of data in ColumnB:2
number of data in ColumnC:2
(编辑): - 在这里回答 - Count number of rows in a column of Excel sheet(Java code provided)
我的Java代码:
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Iterator;
import org.apache.poi.ss.formula.functions.Column;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
public class ExcelRead {
public static void main(String[] args) {
int count=0;
try {
FileInputStream file = new FileInputStream(new File("C:/Users/vinayakp/Desktop/Book.xlsx"));
XSSFWorkbook workbook = new XSSFWorkbook(file);
XSSFSheet sheet = workbook.getSheetAt(0);
Iterator<Row> rowIterator = sheet.iterator();
while(rowIterator.hasNext()) {
Row row = rowIterator.next();
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();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException ae) {
ae.printStackTrace();
}
}
}
我得到的输出是:
ColumnA ColumnB ColumnC
Vinayak James Dan
India US Denmark
我需要获得所需的o / p,如上所示。 代码工作正常但是我需要获取列和行的 count 值。请为我提供相同的解决方案。我之前的代码遇到了问题,这个问题在这个问题中被解决了:Issue while reading Excel document (Java code)
答案 0 :(得分:3)
我认为您可以使用建议的代码here来获取列,然后使用列中的每一行(尽管对于POI方法的行中的每一列都更多),只需计算您需要的值。
所以你的代码可能会遵循以下内容:
for(Row row : sheet) {
short minColIx = row.getFirstCellNum();
short maxColIx = row.getLastCellNum();
for(short colIx = minColIx; colIx<maxColIx; colIx++) {
Cell c = row.getCell(colIx);
if(c != null) {
if(c.getCellType() == Cell.CELL_TYPE_NUMERIC) {
// add c.getNumericCellValue()
}
}
}
}
poi api docs处理列号的好主意。
答案 1 :(得分:2)
代码使用Iterator来解析每个行和列值。它不知道有多少项需要迭代,因此您无法查询该结果。
但是,您可以使用API getLastRowNum
(reference)获取最后一行索引。
获取工作表上的最后一行数。由于在...中的特质 excel文件格式,如果调用此方法的结果为零,则为 无法判断这是否意味着工作表上有零行,或者是一行 位置零。对于这种情况,另外打电话 getPhysicalNumberOfRows()判断零位是否有一行 或不。
对于每个单元格,您在HSSFRow类(reference)中都有API getLastCellNum
。
您需要更改代码才能利用这些API。
答案 2 :(得分:1)
我不熟悉在java代码中使用Excel工作簿,但是你有一个迭代器。难道你不能简单地为它添加一个int并在每次迭代时增加它吗?
int counter = 0;
while(rowIterator.hasNext()) {
...
counter++;
}
使用级联迭代器,您可以使用多个计数器跟踪所需的不同数字;
int[] counters = new int[4];
counters[0] = 0; // number of columns
counters[1] = 0; // number of rows in colA
counters[2] = 0; // number of rows in colB
counters[3] = 0; // number of rows in colC
while(rowIterator.hasNext()) {
/*
* keep track of columns. Useful if colD and more may exist too, but
* you don't want them counted
*/
int col = 0;
while(cellIterator.hasNext()) {
switch(col) {
case 0 : counters[1]++; break; // add row to colA counter
case 1 : counters[2]++; break; // add row to colB counter
case 2 : counters[3]++; break; // add row to colC counter
}
col++;
}
counters[0] = col; // save number of columns
}
这可能不是最好的方法,但我认为它应该运作良好。请记住,我没有这方面的经验,所以如果有人用xssf类的解决方案回答,那可能会更好。另外,我还没有对此进行测试,但它至少应该为您提供一种方法。
我不知道xssf如何处理这个,但你可能想在计算它们之前检查单元格是否为空。然而,根据您发布的代码判断,我认为没有必要。
如果你有一个可变数量的列(可能,否则,为什么要计数?)你应该列出一个带有计数器的变量长度列表,并为每一列添加一个新的计数器int。希望这能帮到你!