|
@@ -42,7 +42,11 @@ public class MapTools implements Serializable {
|
|
|
public static Object strToObj(String inStr) {
|
|
|
ObjectMapper mapper = new ObjectMapper();
|
|
|
try {
|
|
|
+ if (Pattern.compile("[0-9]{2}:[0-9]{2}:[0-9]{2}").matcher(inStr).find()){
|
|
|
+ return mapStrToObj(inStr, null);
|
|
|
+ }
|
|
|
mapper.registerModule(new JavaTimeModule());
|
|
|
+ mapper.configure(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS, false); //关闭
|
|
|
return mapper.readValue(inStr, Map.class);
|
|
|
} catch (JsonProcessingException e) {
|
|
|
return mapStrToObj(inStr, null);
|
|
@@ -76,9 +80,15 @@ public class MapTools implements Serializable {
|
|
|
//{A="12:00:00"}
|
|
|
midChar = !s.contains(":") ? "=" : !s.contains("=") ? ":" : s.indexOf("=") > s.indexOf(":") ? ":" : "=";
|
|
|
String[] colValue = s.split(midChar); // [X1,1]
|
|
|
- if (colValue.length != 2 || Objects.equals(colValue[0], "")) continue;
|
|
|
- keyName = colValue[0].replace("'", "").replace("\"", "").trim(); //X1
|
|
|
- columnValue = Objects.equals(colValue[1], "") ? null : (colValue[1].trim()); //1
|
|
|
+ if (s.contains(":") && s.lastIndexOf(":") > s.indexOf(":")){
|
|
|
+ keyName = colValue[0].replace("'", "").replace("\"", "").trim(); //X1
|
|
|
+ columnValue = s.substring(s.indexOf(":")+1);
|
|
|
+ }else {
|
|
|
+ if (colValue.length != 2 || Objects.equals(colValue[0], "")) continue;
|
|
|
+ keyName = colValue[0].replace("'", "").replace("\"", "").trim(); //X1
|
|
|
+ columnValue = Objects.equals(colValue[1], "") ? null : (colValue[1].trim()); //1
|
|
|
+ }
|
|
|
+
|
|
|
} else {
|
|
|
columnValue = s;
|
|
|
}
|