我正在尝试下载带有自定义标头的csv文件并记录在其中。但是我无法设置标题并将数据填充到csv文件中,但是它确实附加了同一视图页面的源代码。我想要csv文件,如下所示。
empId EmpName Designation
101 John Programmer
102 Tom Manager
我正在使用以下代码,它不包含要写入文件的代码。我怎样才能达到预期的输出?
try {
response.reset();
response.setContentType(mimeType);
String headerKey = "Content-Disposition";
String fileName = "downloadEmployee.csv";
String headerValue = String.format("attachment; filename=\"%s\"", fileName);
response.setHeader(headerKey, headerValue);
} catch (Exception e) {
e.printStackTrace();
}