|
@@ -237,7 +237,7 @@ public class DocumentLibraryServiceImpl implements DocumentLibraryService {
|
|
|
}
|
|
|
ExportExcelUtils eeu = new ExportExcelUtils();
|
|
|
JSONArray array = new JSONArray();
|
|
|
- for (int i = 1; i <= rows + 1; i++) {
|
|
|
+ for (int i = 0; i <= rows + 1; i++) {
|
|
|
Row row = sheet.getRow(i);
|
|
|
if (row != null) {
|
|
|
String value = eeu.getCellValue(row.getCell(0));
|