简体   繁体   English

使用 Spring 引导下载.xls 文件 y Apache POI 不起作用

[英]Download .xls file using Spring boot y Apache POI does not work

I would like to implement a method that downloads an.xls file with the records of a table from a database.我想实现一种方法,该方法从数据库中下载带有表记录的.xls 文件。 I am working without any template to focus on the backend, the problem is that when I run the application and the corresponding method, the download does not start and the records "appears" on the screen我在没有任何模板的情况下专注于后端,问题是当我运行应用程序和相应的方法时,下载没有开始并且屏幕上“出现”记录

在此处输入图像描述

ClienteService:客户服务:

@Override
    public ByteArrayInputStream exportData() throws Exception {
        String[] columnas = {"Número Cliente", "Nombre", "Apellido", "Dirección", "Activo"};

        Workbook workbook = new HSSFWorkbook();
        ByteArrayOutputStream stream = new ByteArrayOutputStream();
        Sheet sheet = workbook.createSheet("Clientes");
        Row row = sheet.createRow(0);

        for(int i=0; i<columnas.length; i++){
            Cell cell = row.createCell(i);
            cell.setCellValue(columnas[i]);
        }

        List<E01_cliente> clientes = (List<E01_cliente>) clienteRepository.findAll();
        int initRow = 1;
        for(E01_cliente c : clientes){
            row = sheet.createRow(initRow);
            row.createCell(0).setCellValue(c.getNro_cliente());
            row.createCell(1).setCellValue(c.getNombre());
            row.createCell(2).setCellValue(c.getApellido());
            row.createCell(3).setCellValue(c.getDireccion());
            row.createCell(4).setCellValue(c.isActivo());
            initRow++;
        }

        workbook.write(stream);
        workbook.close();
        return new ByteArrayInputStream(stream.toByteArray());
    }

Method of Controller: Controller的方法:

@GetMapping("/descargar")
public ResponseEntity<InputStreamResource> exportData() throws Exception {
    ByteArrayInputStream stream = clienteService.exportData();
    HttpHeaders headers = new HttpHeaders();
    headers.add("Content-Dispotion", "attachment; filename=clientes.xls");
    return ResponseEntity.ok().headers(headers).body(new InputStreamResource(stream));
}

Entity Cliente:实体客户:

@Entity
public class E01_cliente {

    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private int nro_cliente;
    private String nombre;
    private String apellido;
    private String direccion;
    private boolean activo;

    @OneToMany(mappedBy = "cliente")
    @JsonIgnore
    private List<E01_factura> facturas;
    //Getters and Setters ignored

Use Content-Disposition instead of Content-Dispotion as Header使用Content-Disposition代替Content-Dispotion作为 Header

headers.add("Content-Disposition", "attachment; filename=clientes.xls");

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM