java – 使用JSF下载CSV文件

前端之家收集整理的这篇文章主要介绍了java – 使用JSF下载CSV文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我不知道如何下载CSV文件. CSV将在运行时生成.我是否需要先将文件保存在tomcat WEB-INF目录中?我正在使用JSF 1.2.

顺便说一下,这种任务最受欢迎的JSF组件是什么?

编辑(05.05.2012 – 15:53)

我尝试了BalusC在他的第一个link中说明的解决方案,但如果我点击我的commandButton,该文件内容显示在网页上.也许mimetype存在问题?

XHTML文件

主豆:

    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

编辑(05.05.2012 – 16:27)

我解决了我的问题.我必须使用< h:commandButton>而不是< a4j:commandButton>现在它有效!

最佳答案

Do I need to save the file in the tomcat WEB-INF directory first?

不,只需在通过ExternalContext#getResponseOutputStream()获取后直接将其写入HTTP响应主体,然后设置正确的响应标头,告诉浏览器它将检索什么.

根据以下答案中的具体示例进行数学计算:

> How to provide a file download from a JSF backing bean?
> JSP generating Excel spreadsheet (XLS) to download

基本上:

ListSEOutputStream());

By the way,what’s the favorite jsf-component for this kind of task?

这是主观的.但无论如何,我们使用完全满意.

原文链接:https://www.f2er.com/java/438084.html

猜你在找的Java相关文章