本文整理了Java中org.apache.poi.ss.usermodel.Row.forEach
方法的一些代码示例,展示了Row.forEach
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Row.forEach
方法的具体详情如下:
包路径:org.apache.poi.ss.usermodel.Row
类名称:Row
方法名:forEach
暂无
代码示例来源:origin: callicoder/java-read-write-excel-file-using-apache-poi
row.forEach(cell -> {
printCellValue(cell);
});
代码示例来源:origin: com.sqlapp/sqlapp-core
headerRow.forEach(cell->{
Object obj=ExcelUtils.getCellValue(cell);
if (!(obj instanceof String)){
boolean[] hasType=new boolean[1];
hasType[0]=true;
headerRow.forEach(cell->{
Object obj=ExcelUtils.getCellValue(cell);
if (!(obj instanceof String)){
代码示例来源:origin: com.sqlapp/sqlapp-core
@Override
protected void set(org.apache.poi.ss.usermodel.Row excelRow, Row row) throws Exception {
row.setDataSourceInfo(filename);
row.setDataSourceDetailInfo(excelRow.getSheet().getSheetName());
row.setDataSourceRowNumber(excelRow.getRowNum()+1);
excelRow.forEach(cell->{
Column column=columnIndexColumnMap.get(cell.getColumnIndex());
if (column==null){
return;
}
Boolean fixed=columnIndexFixedTypeMap.get(cell.getColumnIndex());
Object value=ExcelUtils.getCellValue(cell);
if (value!=null){
if (!fixed.booleanValue()){
ExcelUtils.setColumnType(cell, column);
if (value instanceof String){
if (column.getLength()!=null){
column.setLength(Math.max(this.getTypeLength((String)value), column.getLength()));
} else{
column.setLength(this.getTypeLength((String)value));
}
}
}
put(row, column, value);
}
});
}
内容来源于网络,如有侵权,请联系作者删除!