From 89fde34f71ec09b53082d2a2c9bface5dd35808c Mon Sep 17 00:00:00 2001 From: chenlw <874313221@qq.com> Date: Fri, 21 Oct 2016 08:58:35 +0800 Subject: [PATCH] =?UTF-8?q?excel=E7=9A=84controller?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../platform/controller/ExcelController.java | 73 ++++++++++++++++++- 1 file changed, 72 insertions(+), 1 deletion(-) diff --git a/src/com/platform/controller/ExcelController.java b/src/com/platform/controller/ExcelController.java index 61cf033c..bae72907 100644 --- a/src/com/platform/controller/ExcelController.java +++ b/src/com/platform/controller/ExcelController.java @@ -2,25 +2,45 @@ package com.platform.controller; import java.io.File; import java.io.IOException; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.HashMap; import java.util.Iterator; +import java.util.List; +import java.util.Map; +import java.util.Set; +import javax.annotation.Resource; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; +import org.apache.commons.lang.StringUtils; +import org.apache.log4j.Logger; import org.springframework.stereotype.Controller; import org.springframework.ui.ModelMap; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.multipart.MultipartFile; import org.springframework.web.multipart.MultipartHttpServletRequest; import org.springframework.web.multipart.commons.CommonsMultipartResolver; import com.base.BaseController; +import com.platform.entities.PagerOptions; +import com.platform.entities.PreDataInfo; +import com.platform.service.IPreDataInfoService; +import com.platform.utils.Configs; +import com.platform.utils.UtilsHelper; @Controller @RequestMapping("/fileOperation") public class ExcelController extends BaseController{ + public static Logger log = Configs.DAILY_ROLLING_LOGGER.getLogger(ExcelController.class); + + @Resource(name = "preDataInfoService") + private IPreDataInfoService preDataInfoService; + @RequestMapping(value = "/file/upload" , method = RequestMethod.POST) public void upload(HttpServletRequest request, HttpServletResponse respone){ System.out.println(request.getAttribute("file")); @@ -61,6 +81,57 @@ public class ExcelController extends BaseController{ System.out.println("-----"); respone.setStatus(200); - } + } + @ResponseBody + @RequestMapping("/findByParam") + public ModelMap findByParam(HttpServletRequest res, HttpServletResponse req) throws Exception { + ModelMap modelMap = new ModelMap(); + + res.setCharacterEncoding("UTF-8"); + Map paramMap = res.getParameterMap(); + Set keySet = paramMap.keySet(); + Map params = new HashMap(); + StringBuffer sb = new StringBuffer().append("当前的请求参数:{"); + for (String str : keySet) { + String value = paramMap.get(str)[0]; + if (StringUtils.isNotEmpty(value)) { + params.put(str, value); + sb.append(str).append(":").append(value).append(","); + } else { + sb.append(str).append(":").append("null").append(","); + } + } + Configs.CONSOLE_LOGGER.info(sb.deleteCharAt(sb.length() - 1) + .append("}").toString()); + PagerOptions pagerOptions = (PagerOptions) UtilsHelper + .newObjAndSetAttrsByClass(PagerOptions.class, params); + + List result = preDataInfoService.findByParam(pagerOptions); + modelMap.addAttribute("data", result); + modelMap.addAttribute("length", result.size()); + return modelMap; + } + + @ResponseBody + @RequestMapping("/findAll") + public ModelMap findAll() throws Exception { + ModelMap modelMap = new ModelMap(); + List result = preDataInfoService.findAll(); + modelMap.addAttribute("data", result); + modelMap.addAttribute("length", result.size()); + return modelMap; + } + + @ResponseBody + @RequestMapping("/importExcel") + public ModelMap importExcel(String... paths) throws Exception { + ModelMap modelMap = new ModelMap(); + List listPath = new ArrayList(); + listPath.addAll(Arrays.asList(paths)); + Map result = preDataInfoService.importExcel(listPath); + + modelMap.addAttribute("data", "success"+result); + return modelMap; + } }