大数据段优化
parent
f310a63c7d
commit
e6dee5bf27
|
@ -63,7 +63,7 @@ public class Cn2011 implements Reply {
|
|||
realTimeData.setF_turbidity(v);
|
||||
else if(ckey.equals("DataTime"))
|
||||
realTimeData.setF_time(v);
|
||||
else if(ckey.equals("f_raw_data"))
|
||||
else if(ckey.equals("rawData"))
|
||||
realTimeData.setF_raw_data(v);
|
||||
}
|
||||
BaseResult result=realTimeDataService.insert(realTimeData);
|
||||
|
|
|
@ -80,23 +80,29 @@ public class AnalysisUtil {
|
|||
String[] cpArry = s.split(";");
|
||||
for (String ss:cpArry){
|
||||
//以逗号分隔
|
||||
String[] c = ss.split(",");
|
||||
for (String s1:c){
|
||||
//此处已经是单值 xxx=xxx
|
||||
String[] split = s1.split("=");
|
||||
String key="";
|
||||
String value="";
|
||||
key=split[0];
|
||||
if (split.length==2){
|
||||
//不是key=value的格式
|
||||
if(!ss.startsWith("rawData")){
|
||||
String[] c = ss.split(",");
|
||||
for (String s1:c){
|
||||
//此处已经是单值 xxx=xxx
|
||||
String[] split = s1.split("=");
|
||||
String key="";
|
||||
String value="";
|
||||
key=split[0];
|
||||
if (split.length==2){
|
||||
//不是key=value的格式
|
||||
// throw new AnalysisException(2701,"解析报文出错,报文cp段的值不是key=value形式");
|
||||
value=split[1];
|
||||
value=split[1];
|
||||
}
|
||||
//特殊处理 ##1234QN=20180210154956000
|
||||
if(key.endsWith("QN")&&!"QN".equals(key.split("QN")[0]))
|
||||
key="QN";
|
||||
resultMap.put(key,value);
|
||||
}
|
||||
//特殊处理 ##1234QN=20180210154956000
|
||||
if(key.endsWith("QN")&&!"QN".equals(key.split("QN")[0]))
|
||||
key="QN";
|
||||
resultMap.put(key,value);
|
||||
}else {
|
||||
String[] split = ss.split("=");
|
||||
resultMap.put(split[0],split[1]);
|
||||
}
|
||||
|
||||
}
|
||||
return resultMap;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue