下午好,专家们有一个问题,我需要按列名而不是索引来读取整个 excel 文件,例如:
Column1 | Column2 | Column3
data1 data 2 data 3
POI allows me to read the column index by the method getColumnIndex()
returning for the Column1 = 0 , Column2= 1 etc,
but I need to read it by column name Column1
, Column2
等等,有什么办法可以做到这一点?
我需要按列名读取行和列的所有字段。附上我阅读文件的代码:
更新代码:
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.DataFormatter;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Iterator;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class example {
DataFormatter fmt = new DataFormatter();
/**
* @param args the command line arguments
*/
public static void main(String[] args) throws FileNotFoundException, IOException {
example softMarti = new example();
FileInputStream file = new FileInputStream(new File("C:archive.xlsx"));
XSSFWorkbook workbook = new XSSFWorkbook(file);
XSSFSheet sheet = workbook.getSheetAt(0);
Iterator<Row> rowIterator = sheet.iterator();
while (rowIterator.hasNext()) {
Row row = rowIterator.next();
int rowIndex = row.getRowNum();
if (rowIndex < 1) {
continue;
}
Iterator<Cell> cellIterator = row.cellIterator();
while (cellIterator.hasNext()) {
Cell cell = cellIterator.next();
int columnIndex = cell.getColumnIndex();
if (columnIndex != 0 && columnIndex != 1 && columnIndex != 4) {
continue;
}
String columnName = "";
switch (columnIndex) {
case 0:
columnName = "column1";
break;
case 1:
columnName = "column2";
break;
case 4:
columnName = "column 4";
break;
}
String value = example.getValue(cell);
boolean valid = example.isValid(columnIndex, value);
if (valid) {
continue;
}
System.out.print(columnName + rowIndex);
System.out.println(" -> " + value);
}
}
// TODO code application logic here
}
private String getValue(Cell cell) {
switch (cell.getCellType()) {
case Cell.CELL_TYPE_BLANK:
return null;
case Cell.CELL_TYPE_BOOLEAN:
return "CELL_TYPE_BOOLEAN";
case Cell.CELL_TYPE_ERROR:
return "CELL_TYPE_ERROR";
case Cell.CELL_TYPE_FORMULA:
return "CELL_TYPE_FORMULA";
case Cell.CELL_TYPE_NUMERIC:
return fmt.formatCellValue(cell);
case Cell.CELL_TYPE_STRING:
return cell.getStringCellValue();
default:
return "none";
}
}
boolean isValid(int column, String value) {
if (value == null) {
return false;
}
String pattern = "";
switch (column) {
case 0:
pattern = "[A-Za-z0-9_\\- ]{1,20}";
break;
case 1:
pattern = "[A-Za-z0-9_\\- ]{1,80}";
break;
case 4:
pattern = "[0-9]{1,8}";
break;
}
Pattern pat = Pattern.compile(pattern);
Matcher mat = pat.matcher(value);
return mat.matches();
}
}
此代码有效,但我需要验证列名,因为对于我的项目,列可能会改变位置,这是我的目标
原文由 user2091725 发布,翻译遵循 CC BY-SA 4.0 许可协议
为什么不读取第一行 (0) 单元格值 (0-n)(又名列名)并将(columnName,columnIndex)放入 String/int 映射中。然后您可以按名称引用列索引。
这是一个例子:
在此之后,您将从 columnName —> 索引中获得地图。然后你可以这样做:
….您可以在 row.getCell(idx) 中使用它来获取所有其他行中的单元格。
阅读代码中下面的注释。除了这个,我帮不了你。您需要阅读文档并弄清楚如何去做。