6

我正在使用 Primefaces 3.2。我在使用 primefaces fileDownload 时遇到问题。我可以上传文件并将它们的非英文名称保留在服务器上(在我的情况下是俄语)。但是,当我使用 p:fileDownload 下载上传的文件时,我不能使用俄语字母,因为它们已损坏。似乎 DefaultStreamedContent 类构造函数只接受拉丁字母。我正在根据 primefaces 网站上的展示做所有事情,如下所示。

public FileDownloadController() {          
    InputStream stream = ((ServletContext)FacesContext.getCurrentInstance().getExternalContext().getContext()).getResourceAsStream("/images/optimusprime.jpg");  
    file = new DefaultStreamedContent(stream, "image/jpg", "downloaded_optimus.jpg");  
}

有什么想法可以解决我的问题吗?

提前致谢。

4

1 回答 1

13

这已在即将发布的 PrimeFaces 6.2中修复,但对于早期版本,需要应用以下修复。在下面评论中的链接中,发布了对 PrimeFaces 问题的引用,其中包含以下修复适用于 Chrome、IE 和 Opera 但不适用于 FireFox 的信息(未提及版本,也未提及“Edge”)

解决方法

尝试以application/x-www-form-urlencodedMIME 格式 ( URLEncoder ) 对文件名进行编码。

例子:

public StreamedContent getFileDown () {
        // Get current position in file table
        this.currentPosition();
        attachments = getAttachments();
        Attachment a = getAttachmentByPosition( pos, attachments );

        FileNameMap fileNameMap = URLConnection.getFileNameMap();
        // Detecting MIME type
        String mimeType = fileNameMap.getContentTypeFor(a.getAttachmentName());
        String escapedFilename = "Unrecognized!!!";
        try {
            // Encoding
            escapedFilename = URLEncoder.encode(a.getAttachmentName(), "UTF-8").replaceAll(
                    "\\+", "%20");
        } catch (UnsupportedEncodingException e1) {         
            e1.printStackTrace();
        }
        // Preparing streamed content
        fileDown = new DefaultStreamedContent( new ByteArrayInputStream( a.getAttachment() ),
                mimeType, escapedFilename);
        return fileDown;
    }
于 2013-02-24T12:17:20.820 回答