|
@@ -40,7 +40,19 @@ public class XyDeathCaseDiscussHtmlAnalysis implements XyHtmlAnalysis {
|
|
|
XyCommonAnalysisUtil.cutByTitles(text, titles, 0, map);
|
|
|
}
|
|
|
// XyHtmlAnalysisUtil.mapValueRemoveStartColon(map);
|
|
|
-
|
|
|
+ if(map!=null){
|
|
|
+ String mapTitle = map.get("地点");
|
|
|
+ if(StringUtil.isNotEmpty(mapTitle)){
|
|
|
+ if(mapTitle.contains("参加人员")){
|
|
|
+ int indexOf = mapTitle.indexOf("参加人员");
|
|
|
+ String place = mapTitle.substring(0, indexOf);
|
|
|
+ String participants = mapTitle.substring(indexOf, mapTitle.length());
|
|
|
+ map.put("地点",place);
|
|
|
+ participants=participants.replaceAll("参加人员","").replaceAll(":","");
|
|
|
+ map.put("参加人员",participants);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
XyHtmlAnalysisUtil.insertModuleId(modeId, recTypeId, map);
|
|
|
} catch (Exception e) {
|
|
|
log.error(e.getMessage(), e);
|