本文介绍了获取< p:graphicImage>的具体网址返回StreamedContent的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
为了使用灯箱,我需要一个链接,该链接是由<p:graphicImage>
生成的.
In order to use the lightbox, I need a link to the image as generated by <p:graphicImage>
.
最终,HTML应该看起来像这样:
Ultimately, the HTML should look like this:
<a href="image.jpg" data-lightbox="bilder">
<img src="image.jpg" />
</a>
到目前为止,这是我的JSF尝试:
This is my JSF attempt so far:
<h:outputLink data-lightbox="bilder" value="???">
<p:graphicImage value="#{imageStreamer.image}">
<f:param name="imageId" value="#{gameReader.game.cover.id}"/>
</p:graphicImage>
</h:outputLink>
如何获取返回StreamedContent
的<p:graphicImage>
的具体URL,以便可以在链接中使用它?
How do I get the concrete URL of <p:graphicImage>
returning StreamedContent
so that I can use it in my link?
推荐答案
这有一个解决方案-使用servlet是可以在任何jsf应用程序中使用的servlet
This have one solution - using servlet here is a servlet which will work in any jsf application
package com.dossier.web.handlers;
//~--- non-JDK imports --------------------------------------------------------
import com.dossier.backend.services.mongo.FileService;
import com.mongodb.gridfs.GridFSDBFile;
//~--- JDK imports ------------------------------------------------------------
import java.io.*;
import javax.faces.context.FacesContext;
import javax.servlet.ServletException;
import javax.servlet.SingleThreadModel;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.commons.io.IOUtils;
/**
*
* @author Armen Arzumanyan
*/
@WebServlet(urlPatterns = { "/PreviewImage" })
public class PreviewImage extends HttpServlet implements SingleThreadModel {
private static final long serialVersionUID = -6624464650990859671L;
private FileService fileAction = new FileService();
@Override
public void init() throws ServletException {
super.init();
}
@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
doPreviewImage(request, response);
}
@Override
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {}
private void doPreviewImage(HttpServletRequest request, HttpServletResponse response) throws IOException {
FacesContext context = FacesContext.getCurrentInstance();
String fileIdStr = request.getParameter("fileId");
String widthStr = request.getParameter("w");
GridFSDBFile file = null;
int width = 0;
if ((widthStr != null) && (widthStr.length() > 0)) {
try {
width = Integer.parseInt(widthStr);
} catch (NumberFormatException e) {}
}
if (fileIdStr != null) {
if (fileAction != null) {
file = fileAction.getFile(fileIdStr.trim());
}
if (file != null) {
byte[] content = IOUtils.toByteArray(file.getInputStream());
if (content != null) {
String mimeType = file.getContentType();
response.addHeader("Pragma", "cache");
response.addHeader("Cache-Control", "max-age=3600, must-revalidate");
response.addDateHeader("Expires", System.currentTimeMillis() + 1000 * 3600 * 10);
response.setContentType(mimeType);
try {
if (((mimeType != null)
&& (mimeType.equalsIgnoreCase("image/gif") || mimeType.equalsIgnoreCase("image/x-png")
|| mimeType.equalsIgnoreCase("image/png") || mimeType.equalsIgnoreCase("image/jpg")
|| mimeType.equalsIgnoreCase("image/jpeg"))) || (width == 0)) {
response.getOutputStream().write(content);
} else {
// ByteArrayInputStream bi = new ByteArrayInputStream(content);
// InputStream thumbStream = scaleImageJPG(bi, width);
// byte[] thumbContent = new byte[thumbStream.available()];
// thumbStream.read(thumbContent);
response.getOutputStream().write(content);
}
} catch (IOException e) {
// log.error("file content send error");
e.printStackTrace();
} catch (Exception e) {
// log.error("file exception: " + e);
e.printStackTrace();
} finally {
content = null;
file = null;
}
return;
}
} else {
// TODO add page not found
response.addHeader("Pragma", "no-cache");
response.addDateHeader("Expires", System.currentTimeMillis() - 1000 * 3600);
try {
response.getWriter().println("file object is null");
} catch (Exception e) {}
return;
}
}
// TODO add page not found
response.addHeader("Pragma", "no-cache");
response.addDateHeader("Expires", System.currentTimeMillis() - 1000 * 3600);
try {
response.getWriter().println("file id is not set");
} catch (Exception e) {}
// log.debug("file ID parameter is not set or file is not found");
return;
}
// </editor-fold>
}
//~ Formatted by Jindent --- http://www.jindent.com
这是网页代码
<h:graphicImage id="primage" styleClass="img-rounded img-responsive"
url="/PreviewImage?w=250&fileId=#{updatePersonBean.person.imageId}"
width="250" rendered="#{updatePersonBean.person.imageId != null}"/>
<h:graphicImage id="primagenew" styleClass="img-rounded img-responsive"
url="/resources/img/userpic_simple.gif"
width="250" rendered="#{updatePersonBean.person.imageId == null}"/>
享受
这篇关于获取< p:graphicImage>的具体网址返回StreamedContent的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!