|
@@ -223,6 +223,14 @@ public class DuplicatePointsFinder {
|
|
*/
|
|
*/
|
|
private GisSurveySystemCheckResultDetail createResult(List<List<GisSurveySystemCheckElement>> data
|
|
private GisSurveySystemCheckResultDetail createResult(List<List<GisSurveySystemCheckElement>> data
|
|
, GisSurveySystemCheckId systemCheckId, long begin) {
|
|
, GisSurveySystemCheckId systemCheckId, long begin) {
|
|
|
|
+ long end = System.currentTimeMillis();
|
|
|
|
+ LogPrintMgr.getInstance().printLogMsg(LogLevelFlag.LOG_INFO, mBizType, mStrClassName
|
|
|
|
+ , String.format(
|
|
|
|
+ "结束执行寻找重复点,用时(毫秒):%d"
|
|
|
|
+ , (end - begin)
|
|
|
|
+ )
|
|
|
|
+ );
|
|
|
|
+
|
|
//数据大小
|
|
//数据大小
|
|
final int size = data.size();
|
|
final int size = data.size();
|
|
//结果flag
|
|
//结果flag
|
|
@@ -232,14 +240,6 @@ public class DuplicatePointsFinder {
|
|
Path excelPath = asyncResultManager.writeExcel(GisSurveySystemCheckResultHead.DUPLICATE_POINTS
|
|
Path excelPath = asyncResultManager.writeExcel(GisSurveySystemCheckResultHead.DUPLICATE_POINTS
|
|
, buildExcel(data), FLAG, GisSurveySystemCheckKeys.DUPLICATE_POINTS + ".xlsx");
|
|
, buildExcel(data), FLAG, GisSurveySystemCheckKeys.DUPLICATE_POINTS + ".xlsx");
|
|
|
|
|
|
- long end = System.currentTimeMillis();
|
|
|
|
- LogPrintMgr.getInstance().printLogMsg(LogLevelFlag.LOG_INFO, mBizType, mStrClassName
|
|
|
|
- , String.format(
|
|
|
|
- "结束执行寻找重复点,用时(毫秒):%d"
|
|
|
|
- , (end - begin)
|
|
|
|
- )
|
|
|
|
- );
|
|
|
|
-
|
|
|
|
//构建结果
|
|
//构建结果
|
|
return new GisSurveySystemCheckResultDetail(true
|
|
return new GisSurveySystemCheckResultDetail(true
|
|
, FLAG + "/" + jsonPath.getFileName()
|
|
, FLAG + "/" + jsonPath.getFileName()
|