我试图在一个文件夹中显示一个可以存储在内存中的图像,我试图在文件夹中显示内容......
我正在使用dialog
拨打commandbutton
并在dialog
内拨打graphicImage
但它没有显示图像。
那么什么错?
<p:dialog header="#{lbl['LABEL.ATENDENTE.IMAGEMCERTIFICADO']}" widgetVar="dlgViewCpfImagem" modal="true" resizable="false" closable="false" dynamic="true">
<h:form id="formDlgViewCpfImagem" enctype="multipart/form-data">
<p:messages id="messageDlgViewCpfImagem" showDetail="true"/>
<p:panelGrid styleClass="noBorders panelGridCenter gridNoBackground">
<p:row>
<p:column>
<p:graphicImage value="#{atendenteBean.fileCpf.getAbsolutePath()}"/>
</p:column>
</p:row>
</p:panelGrid>
</h:form>
<center>
<p:commandButton process="@this" value="#{lbl['BOTAO.FECHAR']}" oncomplete="dlgViewCpfImagem.hide()" update=":form:panelAnexarArquivo"/>
</center>
</p:dialog>
<p:column rendered="#{not empty atendenteBean.pojo.imgCpf}">
<p:commandButton process="@this" icon="botaoLog" styleClass="botaoImagem" oncomplete="dlgViewCpfImagem.show()"/>
</p:column>
答案 0 :(得分:0)
您似乎正在尝试显示文件指向文件系统中存储的位置。除非您使用动态图像流,否则无法使用。请参阅以下示例:
托管Bean
import java.io.File;
import java.io.InputStream;
import javax.faces.bean.SessionScoped;
import org.apache.commons.io.FileUtils;
import org.primefaces.model.DefaultStreamedContent;
import org.primefaces.model.StreamedContent;
@ManagedBean
@SessionScoped
public class DynamicImageController {
private StreamedContent graphicImage;
public DynamicImageController() {
try {
//The image file you want to show
File file = new File("d:\\image.png");
InputStream is = FileUtils.openInputStream(file);
graphicImage = new DefaultStreamedContent(is, "image/png");
} catch (Exception e) {
e.printStackTrace();
}
}
public StreamedContent getGraphicImage() {
return graphicImage;
}
}
PS:我使用会话范围的bean,因为我希望它很简单。您应该考虑一种更复杂的机制,以避免在会话中存储过多数据。请记住,图像标记使用不同的http连接,而ViewScoped bean可能不是一个好的选择。
视图
<p:graphicImage value="#{dynamicImageController.graphicImage}" />