我一直在尝试根据String参数显示一些图像。
我正在使用java,Jboss,JSF和primefaces。 图像在这里:...桌面\ wildfly-10.0.0 \ bin \ img \我使用路线: 在我将新餐馆加载到应用程序时保存图像 在客户端显示餐馆时加载图像。
我正在使用的代码:
ManagedBean
package com.activity.presentation;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
import org.apache.commons.io.IOUtils;
import org.primefaces.model.DefaultStreamedContent;
import org.primefaces.model.UploadedFile;
public class ImageLoaderBean implements Serializable {
private static final long serialVersionUID = 1L;
// Cargador de imagenes de un restaurante
private UploadedFile image;
private DefaultStreamedContent imageLoad;
private Map<String, DefaultStreamedContent> images;
public ImageLoaderBean(){
images = new HashMap<>();
}
////////////////////////////////////////////////////////////////////////////
// Getters and setters
////////////////////////////////////////////////////////////////////////////
public UploadedFile getImage() {
return image;
}
public void setImage(UploadedFile image) {
this.image = image;
}
public DefaultStreamedContent getImageLoad() {
return imageLoad;
}
public void setImageLoad(DefaultStreamedContent imageLoad) {
this.imageLoad = imageLoad;
}
public void saveImage() throws IOException {
String imageName = image.getFileName();
InputStream input = image.getInputstream();
String path = new File("").getAbsolutePath() + "//img";
OutputStream output = new FileOutputStream(new File(path, imageName));
try {
IOUtils.copy(input, output);
} finally {
IOUtils.closeQuietly(input);
IOUtils.closeQuietly(output);
}
}
public DefaultStreamedContent loadImage(String name) throws FileNotFoundException {
if(images.containsKey(name))
return images.get(name);
else{
String path = new File("").getAbsolutePath() + "//img//" + name + ".jpg";
FileInputStream fs = new FileInputStream(path);
imageLoad = new DefaultStreamedContent(fs, "image/jpeg");
images.put(name, imageLoad);
return imageLoad;
}
}
}
xhtml页面:
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui"
template="/templates/template-user.xhtml">
<ui:define name="body">
<div class="container_24">
<p:dataScroller value="#{actividades.restaurantes}" var="restaurante"
chunkSize="6">
<f:facet name="header">
Use scroll to show more restaurants
</f:facet>
<h:panelGrid columns="2">
<p:outputPanel>
<p:graphicImage value="#{imageLoader.loadImage(restaurante.name)}"
styleClass="imagen" />
</p:outputPanel>
<p:outputPanel>
<h:panelGrid columns="2" cellpadding="5">
<h:outputText value="Id:" />
<h:outputText value="#{restaurante.id}" styleClass="negrita" />
<h:outputText value="Nombre:" />
<h:outputText value="#{restaurante.name}" styleClass="negrita" />
<h:outputText value="Teléfono:" />
<h:outputText value="#{restaurante.telephone}"
styleClass="negrita" />
<h:outputText value="Dirección:" />
<h:outputText value="#{restaurante.address}" styleClass="negrita" />
</h:panelGrid>
</p:outputPanel>
</h:panelGrid>
</p:dataScroller>
</div>
</ui:define>
</ui:composition>
当我调试它时,方法loadImage工作正常(添加具有正确名称和图像映射路径的不同图像),但是当我在webbrowser上看到页面时,我总是看到相同的图像。我使用“检查元素”选项来查看详细信息和图像在webbrowser上始终具有相同的src:
img id="j_idt23:j_idt25:0:j_idt29" src="/recomendador/javax.faces.resource/dynamiccontent.properties.xhtml? ln=primefaces&v=5.3&pfdrid=D6DixI6zLgdnWFwfifCqRCLll30J5oCGmp92SYOEGh1piAq3Q75ekynDCGWApZML&pfdrt=sc&pfdrid_c=true" alt="" class="imagen"
我不知道为什么当bean方法返回正确的值时会发生这种情况。
代码中使用的ManagedBeans具有会话范围。我使用了所有范围,并使用了一些属性:cache="false"
,更改了value
属性的name
,我无法解决问题。非常感谢