springmvc 에서 데이터 정 보 를 excle 표 로 내 보 냅 니 다.

1. 항목 내 보 내기 로그 정보 추가
2. 프로젝트 에서 poi - *. jar 등 엑셀 파일 을 조작 하 는 jar 파일 가 져 오기
poi-3.7-20120326.jar
poi-excelant-3.7-20101029.jar
poi-ooxml-3.7.jar
poi-ooxml-schemas-3.7.jar
엑셀 내 보 내기 란 프론트 조건 에 따라 파 라 메 터 를 contrller 에 전송 하고 매개 변수 에 따라 데이터 베 이 스 를 조회 하여 list 집합 을 조회 하여 list 집합 을 excle 데 이 터 를 다운로드 하 는 것 입 니 다.
코드 세 션:
Contorller.java
2. Service 에서 createExcel 방법
페이지 jsp 호출
/**
	 *     
	 * @param model
	 */
	@RequestMapping("exportCustomer.do")
	@SystemControllerLog(description = "       Excle")
	public void exportCustomer(ModelMap model) {
		//TODO       
		//model.addAttribute("username", nameStr);
		//         List
		List<CMcustomer> cusList=customerService.exportCustomer(model);
			//      excle    
		HSSFWorkbook workbook = customerService.createExcel(cusList, request);
		SimpleDateFormat format = new SimpleDateFormat("yyyyMMddHHmmss"); //        

		try {
		//  excle   ISO-8859-1      
			String msg = new String(
					("    _" + format.format(new Date()) + ".xls").getBytes(),
					"ISO-8859-1");
			//           
			response.setContentType("application/vnd.ms-excel");
			response.addHeader("Content-Disposition", "attachment;filename="
					+ msg);
			workbook.write(response.getOutputStream());
		} catch (IOException e) {
			logger.error(e);
		}
	}

좋은 웹페이지 즐겨찾기