java设置可供下载的excel模板文件

controller

java 复制代码
@GetMapping("/download/excel")  
@Operation(summary = "下载技术引入Excel模板")  
public void downloadTemplateExcel(HttpServletResponse response) {  
    technologyService.getTechnologyExcelModel(response);  
}

service

java 复制代码
public void getTechnologyExcelModel(HttpServletResponse response) {  
    List<TechnologyImportExcelDto> technologyImportExcelDtoList = getTechnologyImportExcelVOList();  
    File file;  
    try {  
        //使用临时文件  
        file = File.createTempFile("开源技术导入模板", ".xlsx");  
        FileOutputStream fileOutputStream = new FileOutputStream(file);  
        ExportParams params = new ExportParams("表格标题", "Sheet1", ExcelType.XSSF);  
        String tipsMessage = "开源技术导入需遵循以下规则:xxx";  
        params.setTitle(tipsMessage);  
  
        Workbook workbook = ExcelExportUtil.exportExcel(params, TechnologyImportExcelDto.class, technologyImportExcelDtoList);  
  
        // 获取Sheet对象  
        Sheet sheet = workbook.getSheetAt(0); // 只有一个Sheet  
  
        // 设置标题行样式  
        Row titleRow = sheet.getRow(0); // 标题在第一行  
  
        CellStyle titleStyle = workbook.createCellStyle();  
        titleStyle.setAlignment(HorizontalAlignment.LEFT); // 设置水平对齐方式为左对齐  
        titleStyle.setVerticalAlignment(VerticalAlignment.CENTER); // 设置垂直对齐方式为居中  
        titleStyle.setWrapText(true); // 设置文本自动换行  
  
        // 设置边框  
        titleStyle.setBorderBottom(BorderStyle.THIN);  
        titleStyle.setBorderTop(BorderStyle.THIN);  
        titleStyle.setBorderLeft(BorderStyle.THIN);  
        titleStyle.setBorderRight(BorderStyle.THIN);  
  
        // 设置标题行每个单元格的样式  
        for (Cell cell : titleRow) {  
            cell.setCellStyle(titleStyle);  
        }  
  
        // 设置行高  
        titleRow.setHeightInPoints(titleRow.getHeightInPoints() * 4); // 设置为五行字的高度  
  
        // 设置字体加粗  
        Font font = workbook.createFont();  
        font.setBold(true);  
        titleStyle.setFont(font);  
  
        workbook.write(fileOutputStream);  
        fileOutputStream.close();  
        workbook.close();  
    } catch (IOException e) {  
        throw new RuntimeException(e);  
    }  
    //下载,读取文件流并将其添加到response的输出流中,同时设置响应的Header字段  
    try (InputStream inputStream = new FileInputStream(file);  
         //获取response的输出流对象  
         OutputStream outputStream = response.getOutputStream()) {  
        response.setContentType("application/octet-stream");  
        response.setHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode(file.getName(), StandardCharsets.UTF_8));  
        response.setHeader("Access-Control-Expose-Headers", "Content-Disposition");  
        IOUtils.copy(inputStream, outputStream);  
        outputStream.flush();  
    } catch (Exception e) {  
        throw new RuntimeException();  
    } finally {  
        //清除文件  
        file.delete();  
    }  
}
java 复制代码
@NotNull  
private static List<TechnologyImportExcelDto> getTechnologyImportExcelVOList() {  
    List<TechnologyImportExcelDto> technologyImportExcelDtoList = new ArrayList<>();  
    TechnologyImportExcelDto technologyImportExcelDto = new TechnologyImportExcelDto(  
            "系统软件/固件",  
            "模板", 
            "x",  
            "1.0.0",  
            "GPL-2.0",  
            "http://xx.com",  
            "5",  
            "2023-03-15 14:17:02",  
            "http://download.com",  
            "描述内容");  
    technologyImportExcelDtoList.add(technologyImportExcelDto);  
    return technologyImportExcelDtoList;  
}
相关推荐
GoodStudyAndDayDayUp1 分钟前
IDEA能够从mapper跳转到xml的插件
xml·java·intellij-idea
装不满的克莱因瓶32 分钟前
【Redis经典面试题六】Redis的持久化机制是怎样的?
java·数据库·redis·持久化·aof·rdb
n北斗39 分钟前
常用类晨考day15
java
骇客野人42 分钟前
【JAVA】JAVA接口公共返回体ResponseData封装
java·开发语言
yuanbenshidiaos2 小时前
c++---------数据类型
java·jvm·c++
向宇it2 小时前
【从零开始入门unity游戏开发之——C#篇25】C#面向对象动态多态——virtual、override 和 base 关键字、抽象类和抽象方法
java·开发语言·unity·c#·游戏引擎
Lojarro2 小时前
【Spring】Spring框架之-AOP
java·mysql·spring
莫名其妙小饼干2 小时前
网上球鞋竞拍系统|Java|SSM|VUE| 前后端分离
java·开发语言·maven·mssql
isolusion2 小时前
Springboot的创建方式
java·spring boot·后端
zjw_rp3 小时前
Spring-AOP
java·后端·spring·spring-aop