java獲得excel最後一列,最後一行
阿新 • • 發佈:2019-02-16
最近遇到一個需求是需要向excel表格中追加資料,由於報表格式要求需要按列新增,因此需要獲得excel表格最後一列值,然後列插入值:
- private static int findRealCloumns(XSSFSheet sheet, int... flag) {
- int realCloumn = 0;
- while (true) {
- // 遍歷行數,獲取每行的最後一列
- int total = 0;
- for(int j : flag){
- XSSFRow row = sheet.getRow(j);
- if(row != null && row.getCell(realCloumn) != null && row.getCell(realCloumn).getCellType() < 6){
- row.getCell(realCloumn).setCellType(XSSFCell.CELL_TYPE_STRING);
- }
- if (row == null||row.getCell(realCloumn) == null||row.getCell(realCloumn).getStringCellValue().matches("^\\s+$")
- ||row.getCell(realCloumn).getCellType()>2) {
- total++;
- }
- // 如果需要列都是空說明就該返回
- if (total == flag.length) {
- return realCloumn;
- }
- }
- realCloumn++;
- }
- }
獲得excel最後一行
- public static int findRealRows(XSSFSheet sheet, int... flag) {
- int rowReal = 0;
- int rows = sheet.getPhysicalNumberOfRows();// 此處物理行數統計有錯誤,
- for (int i = 0; i < rows; i++) {
- XSSFRow row = sheet.getRow(i);
- int total = 0;
- for(int j : flag){
- // 將所有單元格設定為字串格式
- if(row != null && row.getCell(j) != null && row.getCell(j).getCellType() < 6){
- row.getCell(j).setCellType(XSSFCell.CELL_TYPE_STRING);
- }
- if (row == null ||row.getCell(j) == null||row.getCell(j).getStringCellValue().matches("^\\s+$")||row.getCell(j).getCellType()>2) {
- total++;
- }
- }
- // 如果需要列都是空說明就該返回
- if (total == flag.length) {
- return rowReal;
- } else {
- rowReal++;
- }
- }
- return rowReal;
- }
總結 :
不論是excel最後一行還是最後一列,首先需要約定一行的前幾個單元格內容不能為空或者一列的前幾行單元格不能為空,否則判斷該行或該列為最後一行或列。