|
@@ -778,6 +778,12 @@ public class EdosUtil implements IEdosUtil {
|
|
|
continue;
|
|
|
// 根据key获得value, value也可以是JSONObject,JSONArray,使用对应的参数接收即可
|
|
|
JSONObject jsonData = jsonObject.getJSONObject(key);
|
|
|
+ if (null == jsonData) {
|
|
|
+ pointData.setPointTime(System.currentTimeMillis());
|
|
|
+ pointData.setPointValueInDouble(0.0);
|
|
|
+ pointData.setPointName(key);
|
|
|
+ continue;
|
|
|
+ }
|
|
|
Long ts = jsonData.getLong("ts");
|
|
|
pointData.setPointTime(ts);
|
|
|
String pointValue = null;
|