本文整理汇总了Java中org.apache.poi.ss.usermodel.Row.getFirstCellNum方法的典型用法代码示例。如果您正苦于以下问题:Java Row.getFirstCellNum方法的具体用法?Java Row.getFirstCellNum怎么用?Java Row.getFirstCellNum使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.poi.ss.usermodel.Row
的用法示例。
在下文中一共展示了Row.getFirstCellNum方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: isRowEmpty
import org.apache.poi.ss.usermodel.Row; //导入方法依赖的package包/类
private boolean isRowEmpty(Row row) {
for (int c = row.getFirstCellNum(); c < row.getLastCellNum(); c++) {
Cell cell = row.getCell(c, Row.MissingCellPolicy.CREATE_NULL_AS_BLANK);
if (cell != null && cell.getCellTypeEnum() != CellType.BLANK)
return false;
}
return true;
}
示例2: read
import org.apache.poi.ss.usermodel.Row; //导入方法依赖的package包/类
/**
* 处理excel到List(用于简单导入,不返回具体实体的列表/简单导入使用)
*
* @param inputStream 文件流
* @return 数据列表
*/
public static List<Map<String, String>> read(InputStream inputStream) throws IOException,
InvalidFormatException {
Sheet sheet = inputStream2Sheet(inputStream);
if (sheet == null) {
return Collections.emptyList();
}
Row row;
Iterator<Row> rows = sheet.rowIterator();
//表头
List<String> titleList = new ArrayList<>();
List<Map<String, String>> result = new ArrayList<>();
//是否是第一行
boolean firstRow = true;
while (rows.hasNext()) {
//每行数据的Map,key为表头,value为值
Map<String, String> map = new HashMap<>();
row = rows.next();
if (isBlankRow(row)) {
break;
}
for (int i = row.getFirstCellNum(); i < row.getLastCellNum(); i++) {
Cell cell = row.getCell(i);
if (cell == null) {
continue;
}
//取得cell值
String cellValue = getCellFormatValue(cell);
if (firstRow) {
titleList.add(cellValue.trim());
} else {
if (i < titleList.size()) {
map.put(titleList.get(i), cellValue.trim());
}
}
}
//每行记录加入
if (map.size() > 0) {
result.add(map);
}
//第一行设置为否
firstRow = false;
}
return result;
}