java中StreamedContent的jar文件

时间:2016-05-22 12:29:49

标签: jsf primefaces jar

我想从db检索文件并将其显示在primefaces的数据表中。 我想使用这段代码:

public StreamedContent convertFichier(byte[] bytes) {
    InputStream is = new ByteArrayInputStream(bytes);
    System.out.println("size file : " + bytes.length);
    StreamedContent image = new DefaultStreamedContent(is);
    System.out.println("dans le convertisseur : " + image.getContentType());
    return image;
}

但我不知道StreamedContent

使用了什么jar文件

1 个答案:

答案 0 :(得分:1)

查看此页面和jar文件

http://www.primefaces.org/downloads

http://search.maven.org/remotecontent?filepath=org/primefaces/primefaces/5.3/primefaces-5.3.jar

StreamingContent位于jar上面的jar包中

org.primefaces.model.StreamedContent

您也可以从我之前指定的页面下载社区下载块中的来源下载jar。

http://search.maven.org/remotecontent?filepath=org/primefaces/primefaces/5.3/primefaces-5.3-sources.jar