|
|
@@ -1,5 +1,7 @@
|
|
|
package com.fdkankan.contro.service.impl;
|
|
|
|
|
|
+import cn.hutool.core.io.FileUtil;
|
|
|
+import com.alibaba.fastjson.JSON;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import com.fdkankan.contro.entity.SceneUploadUserLog;
|
|
|
import com.fdkankan.contro.entity.User;
|
|
|
@@ -45,4 +47,9 @@ public class SceneUploadUserLogServiceImpl extends ServiceImpl<ISceneUploadUserL
|
|
|
}
|
|
|
this.save(sceneUploadUserLog);
|
|
|
}
|
|
|
+
|
|
|
+ public static void main(String[] args) {
|
|
|
+ JSONObject jsonObject = JSON.parseObject(FileUtil.readUtf8String("D:\\Downloads\\data.fdage"));
|
|
|
+ System.out.println(jsonObject.getLong("account"));
|
|
|
+ }
|
|
|
}
|