- 博客(4)
- 收藏
- 关注
原创 Easyexcel到处excel文件
Vo对象配置 //vo对象:指定列名 @ExcelProperty("学生姓名") //设置列宽 @ColumnWidth(20) private String name; 导出方法 private void download(List<StudentDownloadVo> list, HttpServletResponse response) { try { String fileName = URLEncoder.encode("学生" + System.curr
2022-05-28 22:46:02 120
原创 多个文件导出zip压缩包
直接上代码,根据多个文件路劲到处压缩包(zip) public void newDownload(Integer replyId, String code, HttpServletResponse response) { List<AdrBusiReplyFile> fileList = fileService.selectList(replyId,code); try { String zipName = System.currentTimeMillis() +
2022-05-28 22:30:49 197
原创 获取当前日期是今年的第几周
public int getTime(String dateTime) { //国际周: 周日是第一天 //中国周: 周一是第一天 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); Date date = null; try { date = sdf.parse(dateTime); } catch (ParseException e) { e.printSta
2022-05-28 22:26:07 168
原创 根据路劲下载文件
public void downloadTask(String excelUrl, HttpServletResponse response) { response.setContentType("application/vnd.ms-excel;charset=utf-8"); File file = new File(excelUrl); String fileName = "报告" + System.currentTimeMillis() + ".xls"; File
2022-05-28 22:24:45 83
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人