调整IP拦截、DNS响应策略、IP Spoofing日志 导出后 列标题不对应
This commit is contained in:
@@ -216,7 +216,14 @@ public class ExcelCsv {
|
||||
}
|
||||
if(!StringUtil.isEmpty(titleStr)){
|
||||
//去掉不需要展示的header
|
||||
if(!(noExportField.indexOf(","+titleStr+",") > -1)){
|
||||
//去掉不需要展示的header
|
||||
String noExport="";
|
||||
if(noExportField.contains("&")){
|
||||
noExport=noExportField.substring(0,noExportField.indexOf("&"));
|
||||
}else{
|
||||
noExport=noExportField;
|
||||
}
|
||||
if(!(noExport.indexOf(","+titleStr+",") > -1)){
|
||||
//需要替换的header
|
||||
boolean flag=true;
|
||||
if(noExportField.contains("&")){
|
||||
|
||||
Reference in New Issue
Block a user