未对EXT6进行判空处理

This commit is contained in:
Mr-wang 2023-12-06 12:21:44 +08:00
parent 6ee7558f5f
commit 79b92b32c5

View File

@ -240,6 +240,7 @@ public class ToPageService extends ActionWeb {
fileHandleRowMaps = new ArrayList<>(); fileHandleRowMaps = new ArrayList<>();
for (RowMap fileRowMap : fileRowMaps) { for (RowMap fileRowMap : fileRowMaps) {
String file_depart = fileRowMap.getString("EXT6"); String file_depart = fileRowMap.getString("EXT6");
if (UtilString.isNotEmpty(file_depart)){
file_depart = file_depart.substring(0,file_depart.length()-1); file_depart = file_depart.substring(0,file_depart.length()-1);
if (file_depart.contains(",")){ if (file_depart.contains(",")){
String[] split = file_depart.split(","); String[] split = file_depart.split(",");
@ -256,6 +257,9 @@ public class ToPageService extends ActionWeb {
continue; continue;
} }
} }
}else {
continue;
}
String FILEID = fileRowMap.getString("FILEID"); String FILEID = fileRowMap.getString("FILEID");
Integer PLLEVEL = fileRowMap.getInt("PLLEVEL"); Integer PLLEVEL = fileRowMap.getInt("PLLEVEL");
PALRepositoryPropertyDao repositoryPropertyDao = new PALRepositoryPropertyDao(); PALRepositoryPropertyDao repositoryPropertyDao = new PALRepositoryPropertyDao();