删除道具脚本3

master
duhui 2023-02-13 11:19:28 +08:00
parent d289b1e594
commit 4d57b0fa7c
1 changed files with 2 additions and 2 deletions

View File

@ -308,11 +308,11 @@ public class GmController {
// sheet
for (int i = 0; i < wb.getNumberOfSheets(); i++) {
HSSFSheet sheet = wb.getSheetAt(i);
int rowNum = sheet.getLastRowNum();
int rowSize = sheet.getLastRowNum()+1;
HashMap<String, HashMap<String, HashMap<String, Long>>> map = new HashMap<>();
// 行
for (int j = 2; j < rowNum; j++) {
for (int j = 2; j < rowSize; j++) {
// 第几行
HSSFRow row = sheet.getRow(j);
// 重要的列 0 1 4 6