1

我有一个数据表,可让您下载文件。有用。但是,当我尝试在过滤后下载文件时,返回的是列表中的第一位。

此图像显示,当单击 teste4.txt 时,下载了相同的文件。这是对的。正确下载

这张图是点击文件teste4.txt,过滤后下载的文件是teste1.txt下载错误

这是我包含数据表的文件:

<h:form id="hFormListaArquivosRegiao2" enctype="multipart/form-data">

    <p:dataTable id="pDataTableListaArquivos" var="arquivo" value="#{arquivoBean.listaArquivos}" filteredValue="#{arquivoBean.filteredListaArquivos}">

        <p:column id="pColumnNomeArquivo" headerText="#{msg.NomeDoArquivo}" sortBy="#{arquivo.nomeArquivo}" filterMatchMode="contains" filterBy="#{arquivo.nomeArquivo}">

            <h:commandLink action="#{arquivoBean.download}" title="#{arquivo.nomeArquivo}">

                <h:outputText value="#{arquivo.nomeArquivo}" />
                <f:setPropertyActionListener target="#{arquivoBean.arquivo}" value="#{arquivo}" />

            </h:commandLink>

        </p:column>

</h:form>

这是backingBean负责下载的方法:

public void download() throws Exception {

    logger.debug("NOME ARQUIVO: "+ ContextoBean.CAMINHO_ARQUIVOS + arquivo.getNomeArquivo() +", "+ arquivo.getNomeArquivo());

    FacesContext facesContext = FacesContext.getCurrentInstance();
    pushArquivo(facesContext.getExternalContext(), ContextoBean.CAMINHO_ARQUIVOS + arquivo.getNomeArquivo(), arquivo.getNomeArquivo());
    facesContext.responseComplete();

}

这是负责下载的backingBean的辅助方法:

private void pushArquivo(ExternalContext externalContext, String nomeArquivo, String nomeDeExibicao) throws IOException {

    // Info sobre a lógica usada: http://stackoverflow.com/questions/1686821/execute-backing-bean-action-on-load
    File descritoArquivo = new File(nomeArquivo);
    int length = 0;
    OutputStream os = externalContext.getResponseOutputStream();
    String extencaoArquivo = externalContext.getMimeType(nomeArquivo);
    externalContext.setResponseContentType((extencaoArquivo != null) ? extencaoArquivo : "application/octet-stream");
    externalContext.setResponseContentLength((int) descritoArquivo.length());
    externalContext.setResponseHeader("Content-Disposition", "attachment; filename=\"" + nomeDeExibicao + "\"");

    // Stream to the requester.
    byte[] bbuf = new byte[1024];
    DataInputStream in = new DataInputStream(new FileInputStream(descritoArquivo));
    while ((in != null) && ((length = in.read(bbuf)) != -1)) {
        os.write(bbuf, 0, length);
    }

    in.close();

}

4

1 回答 1

0

如果我是你,我会做一些更改以通过方法参数获取当前的 arquivo:

<h:commandLink action="#{arquivoBean.download(arquivo)}">
    <h:outputText value="#{arquivo.nomeArquivo}" />
</h:commandLink>

在豆子里:

public void download(Arquivo arquivo) throws Exception {
    FacesContext facesContext = FacesContext.getCurrentInstance();
    pushArquivo(facesContext.getExternalContext(),
        ContextoBean.CAMINHO_ARQUIVOS + arquivo.getNomeArquivo(),
        arquivo.getNomeArquivo());
    facesContext.responseComplete();
}
于 2013-04-06T14:16:43.140 回答