本文整理匯總了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;
}