제3자poi 도구를 이용하여 주해 방식으로 내보내기
2360 단어 excel
/** @Fields serialVersionUID: */
private static final long serialVersionUID = 1L;
@Excel(name = " ", width = 35)
private String userSum;//
@Excel(name = " ", width = 35)
private String addSum;//
@Excel(name = " ", width = 35)
private String btSum;//
@Excel(name = " ", width = 35)
private String zcSum;//
@Excel(name = " ", width = 35)
private String xhSum;//
}//get set 메서드 필요
--- 내보내기
/**
*
* @Description
* @return
* @throws Exception
*/
@RequestMapping("/exportUserInfo.do")
public void exportUserInfo(HttpServletResponse response,UserChangeVo userChangeVo) throws Exception {
Listvo=userChangeService.getCustomSum(userChangeVo);//
ExportParams exportParams = new ExportParams();
exportParams.setSheetName(" ");//
exportParams.setTitle(" ");//
Workbook workbook=ExcelExportUtil.exportExcel(exportParams,
UserChangeVo.class, vo);//
response.setContentType("applicationnd.ms-excel"); // excel
String fileName = java.net.URLEncoder.encode(" ", "UTF-8");
response.setHeader("Content-disposition", "attachment; filename="+ fileName + ".xls");// 03 xls, xlsx
OutputStream out = response.getOutputStream();
workbook.write(out);//
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Django 시트 업로드우리가 작업한 대부분의 프로젝트에는 일괄적으로 데이터를 업로드하는 기능이 필요했습니다. 우리는 항상 Excel 시트를 처리하고 각 열이 각 모델로 이동하는 다른 코드를 작성했습니다. 최신 프로젝트에서 우리는 그것을 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.