com.y3tu.tool.poi.excel.RowUtil Maven / Gradle / Ivy
package com.y3tu.tool.poi.excel;
import java.util.ArrayList;
import java.util.List;
import com.y3tu.tool.core.text.StringUtils;
import com.y3tu.tool.poi.excel.cell.CellEditor;
import com.y3tu.tool.poi.excel.cell.CellUtil;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
/**
* Excel中的行{@link Row}封装工具类
*
* @author looly
*/
public class RowUtil {
/**
* 获取已有行或创建新行
*
* @param sheet Excel表
* @param rowIndex 行号
* @return {@link Row}
*/
public static Row getOrCreateRow(Sheet sheet, int rowIndex) {
Row row = sheet.getRow(rowIndex);
if (null == row) {
row = sheet.createRow(rowIndex);
}
return row;
}
/**
* 读取一行
*
* @param row 行
* @param cellEditor 单元格编辑器
* @return 单元格值列表
*/
public static List