JAVA - apache poi 모든 셀 읽기
본문에서 사용한 사용자 함수 returnStringValue() 는 여기에 있다. 방법 1 for (int i = 0; i < sheet.getLastRowNum(); i++) { Row row = sheet.getRow(i); for (int j = 0; j < row.getLastCellNum(); j++) { Cell cell = row.getCell(j); System.out.println(returnStringValue(workbook, cell)); } } 방법 2 for (Row row : sheet) { for (Cell cell : row) { System.out.println(returnStringValue(workbook, cell)); } } 방법 3 for (Row row : sh..