From a56c965e004eb45b2a66b5989615c06b7b164406 Mon Sep 17 00:00:00 2001 From: lxw <810412026@qq.com> Date: 星期三, 17 五月 2023 15:34:38 +0800 Subject: [PATCH] 文件解析充电数据导出 --- src/main/java/com/whyc/controller/AnalysisController.java | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/whyc/controller/AnalysisController.java b/src/main/java/com/whyc/controller/AnalysisController.java index 0b580b6..93f0c91 100644 --- a/src/main/java/com/whyc/controller/AnalysisController.java +++ b/src/main/java/com/whyc/controller/AnalysisController.java @@ -63,13 +63,13 @@ public void export(HttpServletRequest req, HttpServletResponse resp ){ String filePath = req.getParameter("filePath"); String suffix=filePath.substring(filePath.lastIndexOf(".")+1).toLowerCase(Locale.ROOT); - /*switch (suffix){ + switch (suffix){ case "bcp":exportService.exportBcp(req,resp); break; case "chr":exportService.exportChr(req,resp); break; - case "alm":exportService.exportAlm(req,resp); - break; - }*/ + /*case "alm":exportService.exportAlm(req,resp); + break;*/ + } } } -- Gitblit v1.9.1