我使用primefaces并且我想从数据库下载不同格式的文件(pdf,jpg,png) 但我没有意识到这一点 我看过很多像这样的话题,但他们的方法对我不起作用 这是html:
<ui:repeat value="#{histCommController.selectedCommande.listFichiers}" var="jjjjj">
<tr>
<td>
<h:outputLabel style="font-weight: bold;" value="#{jjjjj.nom}" />
</td>
<td>
<h:outputLabel style="font-weight: bold;" value="#{jjjjj.taille}" />
</td>
<td>
<p:commandButton id="downloadLink" value="Download" ajax="false"
icon="ui-icon-arrowthichk-s">
<p:fileDownload value="#{jjjjj.convertFichieru}" />
</p:commandButton>
</td>
</tr>
</ui:repeat>
这是java:
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;
}
始终,image.getContentType()返回null 和bytes.length not null
你知道吗谢谢
我只知道问题,我把下载链接放在对话框中,因为当我在对话框外面进行测试时,它可以工作 这是它的工作测试:
<h:form>
<p:commandLink id="downloadLink" value="Download" ajax="false">
<p:fileDownload value="#{histCommController.test}" />
</p:commandLink>
</h:form>
这是对话框内的测试:
<p:dialog header="Car Detail" widgetVar="carDialog" resizable="false" id="carDlg"
showEffect="fade" hideEffect="explode" modal="true">
<table id="gradient-style" >
<tr style="border: hidden;">
<th>
<h:outputLabel value="Model:" />
</th>
<td>
<h:outputLabel style="font-weight: bold;" value="#{histCommController.selectedCommande.id}" />
</td>
</tr>
<tr style="border: hidden;">
<th>
<h:outputLabel value="Year:" />
</th>
<td>
<h:outputLabel style="font-weight: bold;" value="#{histCommController.selectedCommande.etat}" />
</td>
</tr>
<tr style="border: hidden;">
<th>
<h:outputLabel value="Manufacturer:" />
</th>
<td>
<h:outputLabel style="font-weight: bold;" value="#{histCommController.selectedCommande.dateEnvoi}" />
</td>
</tr>
<tr style="border: hidden;">
<th>
<h:outputLabel value="Color:" />
</th>
<td>
<h:outputLabel style="font-weight: bold;" value="#{histCommController.selectedCommande.dateLivraisonRecommande}" />
</td>
</tr>
</table>
<table id="gradient-style" >
<th>Nom Fichier</th><th>Taille</th><th>Télécharger</th>
<ui:repeat value="#{histCommController.selectedCommande.listFichiers}" var="jjjjj">
<tr>
<td>
<h:outputLabel style="font-weight: bold;" value="#{jjjjj.nom}" />
</td>
<td>
<h:outputLabel style="font-weight: bold;" value="#{jjjjj.taille}" />
</td>
<td>
<p:commandLink id="downloadLink" value="Download" ajax="false">
<p:fileDownload value="#{histCommController.test}" />
</p:commandLink>
</td>
</tr>
</ui:repeat>
</table>
</p:dialog>
后者不起作用
你知道如何在对话框中使用下载链接吗
提前谢谢
答案 0 :(得分:0)
您应该自己设置内容类型。看看constructors of DefaultStreamedContent。 而不是
StreamedContent image = new DefaultStreamedContent(is);
你应该写
StreamedContent image = new DefaultStreamedContent(is, "image/jpeg", "fileName.jpg");
确保使用proper content type和文件名扩展名。