|
@@ -55,19 +55,17 @@ public class IMFSaveHandle { |
|
@@ -55,19 +55,17 @@ public class IMFSaveHandle { |
55
|
String sndrm = meta.get("SNDR").toString();
|
55
|
String sndrm = meta.get("SNDR").toString();
|
56
|
String stypm = meta.get("STYP").toString();
|
56
|
String stypm = meta.get("STYP").toString();
|
57
|
|
57
|
|
|
|
58
|
+
|
|
|
59
|
+
|
58
|
if ("TXD".equals(sndrm)){
|
60
|
if ("TXD".equals(sndrm)){
|
59
|
- if("EDEP".equals(stypm)
|
|
|
60
|
- || "EFOH".equals(stypm)
|
|
|
61
|
- || "ERCF".equals(stypm)
|
|
|
62
|
- || "PFFM".equals(stypm)
|
|
|
63
|
- || "UDEP".equals(stypm)
|
|
|
64
|
- || "UFOH".equals(stypm)
|
|
|
65
|
- || "URCF".equals(stypm)
|
|
|
66
|
- || "FFM".equals(stypm)
|
|
|
67
|
- || "IFWB".equals(stypm)
|
|
|
68
|
- || "IFHL".equals(stypm)){
|
|
|
69
|
- //存储至备份目录
|
|
|
70
|
- FileTool.writeFileToBak(xmlmessage);
|
61
|
+ //读取配置文件的需要本地存储报文的节点
|
|
|
62
|
+ String saveStyp= FileTool.readProperties("saveStyp");
|
|
|
63
|
+ String[] styps = saveStyp.split(",");
|
|
|
64
|
+ for (String item: styps) {
|
|
|
65
|
+ if (item.equals(stypm)){
|
|
|
66
|
+ //存储至备份目录
|
|
|
67
|
+ FileTool.writeFileToBak(xmlmessage);
|
|
|
68
|
+ }
|
71
|
}
|
69
|
}
|
72
|
}
|
70
|
}
|
73
|
|
71
|
|