我不知道如何下载 CSV 文件。CSV 将在运行时生成。我需要先将文件保存在tomcat WEB-INF目录中吗?我正在使用 JSF 1.2。
顺便问一下,这种任务最受青睐的 JSF 组件是什么?
编辑 (05.05.2012 - 15:53)
我尝试了BalusC
他的第一个链接中所述的解决方案,但是如果我单击我的 commandButton 文件的内容会显示在网页上。也许是有问题mimetype
?
xhtml 文件:
<a4j:form>
<a4j:commandButton action="#{surveyEvaluationBean.doDataExport}" value="#{msg.srvExportButton}" />
</a4j:form>
主豆:
public String doDataExport() {
try {
export.downloadFile();
} catch (SurveyException e) {
hasErrors = true;
}
return "";
}
出口豆:
public void downloadFile() throws SurveyException {
try {
String filename = "analysis.csv";
FacesContext fc = FacesContext.getCurrentInstance();
HttpServletResponse response = (HttpServletResponse) fc.getExternalContext().getResponse();
response.reset();
response.setContentType("text/comma-separated-values");
response.setHeader("Content-Disposition", "attachment; filename=\"" + filename + "\"");
OutputStream output = response.getOutputStream();
// writing just sample data
List<String> strings = new ArrayList<String>();
strings.add("filename" + ";" + "description" + "\n");
strings.add(filename + ";" + "this is just a test" + "\n");
for (String s : strings) {
output.write(s.getBytes());
}
output.flush();
output.close();
fc.responseComplete();
} catch (IOException e) {
throw new SurveyException("an error occurred");
}
}
编辑 (05.05.2012 - 16:27)
我解决了我的问题。我必须使用<h:commandButton>
而不是,<a4j:commandButton>
现在它可以工作了!