如何使用 Angular 2 在 Spring boot 中导出 excel 文件?

问题描述 投票:0回答:1

在我的项目中,我需要将客户数据导出到 Excel 文件中。我正在使用 Hybernate 构建的表结构。

我的控制器是:

 @RequestMapping(value="exporttoexcel", method= RequestMethod.GET, produces={ MediaType.APPLICATION_JSON_VALUE })
    public void  getMyData(HttpServletRequest request, HttpServletResponse response) throws Exception {
        List<Course> listCourses = new ArrayList<Course>();
        listCourses.add(new Course(1, "Polarfrosch100", new Date()));
        listCourses.add(new Course(2, "Polarfrosch101", new Date()));
        listCourses.add(new Course(3, "Polarfrosch102", new Date()));
        HashMap<String, Object> model = new HashMap<>();
        model.put("courses", listCourses);
        new ExcelUtilsHelper().renderMergedOutputModel(model, request, response);
    }

我的助手文件如下:

public class ExcelUtilsHelper {


    private static final DateFormat DATE_FORMAT = DateFormat.getDateInstance(DateFormat.SHORT);

    private String contentType;

    public ExcelUtilsHelper() {
        this.setContentType("application/vnd.ms-excel");
    }

    public final void renderMergedOutputModel(Map<String, Object> model, HttpServletRequest request, HttpServletResponse response) throws Exception {
        Workbook workbook = this.createWorkbook(model, request);
        this.buildExcelDocument(model, workbook, request, response);
        response.setContentType(this.getContentType());
        this.renderWorkbook(workbook, response);
    }

    protected Workbook createWorkbook(Map<String, Object> model, HttpServletRequest request) {
        return new HSSFWorkbook();
    }

    protected void renderWorkbook(Workbook workbook, HttpServletResponse response) throws IOException {
        ServletOutputStream out = response.getOutputStream();
        workbook.write(out);
    }

    public void setContentType(String contentType) {
        this.contentType = contentType;
    }

    public String getContentType() {
        return contentType;
    }

    protected void buildExcelDocument(Map<String, Object> model,
                                      Workbook workbook,
                                      HttpServletRequest request,
                                      HttpServletResponse response) throws Exception {

        // change the file name
        response.setHeader("Content-Disposition", "attachment; filename=\"my-xls-file.xls\"");

        @SuppressWarnings("unchecked")
        List<Course> courses = (List<Course>) model.get("courses");

        // create excel xls sheet
        Sheet sheet = workbook.createSheet("Spring MVC AbstractXlsView");

        // create header row
        Row header = sheet.createRow(0);
        header.createCell(0).setCellValue("ID");
        header.createCell(1).setCellValue("Name");
        header.createCell(2).setCellValue("Date");

        // Create data cells
        int rowCount = 1;
        for (Course course : courses){
            Row courseRow = sheet.createRow(rowCount++);
            courseRow.createCell(0).setCellValue(course.getId());
            courseRow.createCell(1).setCellValue(course.getName());
            courseRow.createCell(2).setCellValue(DATE_FORMAT.format(course.getDate()));
        }
    }
}

Cource 是这样的:

public class Course {
    int Id;
    String Name;
    Date Date;
// Getter and setter 
}

我的 UI 部分列表如下:

<div class="panel-heading">
    <h6 class="panel-title">All Customers</h6>
    <button (click)="addCustomer()" class="btn btn-xs  bg-primary" title="Add"><i class="glyphicon glyphicon-edit"></i></button>
    <button (click)="exportToExcel()" class="btn btn-xs  bg-danger" title="Add"><i class="glyphicon glyphicon-edit"></i></button>
  </div>

服务代码如下:

  exportToExcel(){
    console.log("in exportToExcel");
    this.customerService.getCustomersExcelData().subscribe(result => {
        console.log("DataResult");
        console.log(result)
      },
      error => {
        console.log(error);
      });
  }

  getCustomersExcelData(){
    return this.http.get(ApiConfig.apiRoot+ApiConfig.excelDataCustomer)
      .map((response: Response) => {
        this.downloadFile(response),
          error => console.log("Error downloading the file."),
          () => console.info("OK");
      }).catch(this.commonMethods.handleError);
  }

当我运行它时,它会给出以下输出:

Response with status: 200 OK for URL: http://localhost:9966/api/customer/exporttoexcel

问题是,我无法以 Excel 格式导出给定的数据。

java angular spring-boot angular-ui-bootstrap
1个回答
0
投票

在控制器声明中只需删除

produces
HttpServletRequest request
。控制器的简单示例如下所示:

@RequestMapping(value = "/export", method = RequestMethod.POST)
public void export(HttpServletResponse response) {
    List<Person> persons = personRepository.findAll();
    List<String> headers = Arrays.asList("First Name", "Last Name");
    try {
        response.addHeader("Content-disposition", "attachment; filename=People.xlsx");
        response.setContentType("application/vnd.ms-excel");
        new SimpleExporter().gridExport(headers, persons, "firstName, lastName, ", response.getOutputStream());
        response.flushBuffer();
    } catch (IOException e) {
        log.warn(e.getMessage(), e);
    }
}
© www.soinside.com 2019 - 2024. All rights reserved.