Wie exportieren Sie eine Excel -Datei mit Angular 2 in Spring Start?Java

Java-Forum
Anonymous
 Wie exportieren Sie eine Excel -Datei mit Angular 2 in Spring Start?

Post by Anonymous »

In meinem Projekt muss ich Kundendaten in einer Excel -Datei exportieren. Ich verwende die Tabellenstruktur mit Hybernate Build. @RequestMapping(value="exporttoexcel", method= RequestMethod.GET, produces={ MediaType.APPLICATION_JSON_VALUE })
public void getMyData(HttpServletRequest request, HttpServletResponse response) throws Exception {
List listCourses = new ArrayList();
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 model = new HashMap();
model.put("courses", listCourses);
new ExcelUtilsHelper().renderMergedOutputModel(model, request, response);
}
< /code>

Meine Helferdatei ist wie: < /p>

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 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 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 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 courses = (List) 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()));
}
}
}
< /code>

Und Cource ist wie: < /p>

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

Meine Liste im UI -Teil ist wie: < /p>


All Customers



< /code>

im Servicecode ist wie: < /p>

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

und < /p>

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);
}
< /code>

Wenn ich dies ausführe, gibt es unten aus.Response with status: 200 OK for URL: http://localhost:9966/api/customer/exporttoexcel
< /code>

Problem ist, dass ich die angegebenen Daten nicht im Excel -Format exportieren kann.

Quick Reply

Change Text Case: 
   
  • Similar Topics
    Replies
    Views
    Last post