1

这是我在论坛上的第一个问题,希望你能帮助我。 我的场景:

  1. 基于我想从浏览器下载的文件
  2. 我正在使用 primefaces、FileDownload 和 StreamedContent

问题

问题是下载文件 0Bytes

我的view.xhtml:

<p:commandButton id="downloadLink" value="Descargar" ajax="false" onclick="PrimeFaces.monitorDownload(start, stop)"   
                                         rendered="#{not anexoController.ingresaDatos}" icon="ui-icon-arrowthichk-s">  
                            <p:fileDownload value="#{anexoController.file}" />  
                        </p:commandButton>

我的下载管理器

    public StreamedContent getFile() {
    file = null;
    byte[] bytes = anexoActual.getArchivo(); //anexoActual.getArchivo.length = 53508
    String nombre = anexoActual.getNombre(); 
    String formato = anexoActual.getFormato();
    InputStream stream = new ByteArrayInputStream(bytes);
    try {
        stream.read(bytes);
    } catch (IOException ex) {
        Logger.getLogger(AnexoController.class.getName()).log(Level.SEVERE, null, ex);
    }
    file = new DefaultStreamedContent(stream, formato, nombre);
    return file; //file.steam.buf.length = 53508
}

如您所见,文件到达长度为 53508 字节的文件,但是当下载完成时,我唯一知道文件名和数据类型

4

1 回答 1

4

看看这段代码:

try {
    stream.read(bytes);
} catch (IOException ex) {
    Logger.getLogger(...)
}

您正在从流中读取- 返回包含要开始的数据的字节数组。你为什么这样做?它将流定位在末尾。

只需删除该块,它可能会很好。

于 2012-07-31T19:17:02.803 回答