我使用<ui:include>
将一个JSP页面包含在Facelets中。在JSP页面中,我能够获取PDF,但它以纯文本形式显示内容。这是怎么造成的,我该如何解决?
JSP页面:
<html>
<%@page import="java.io.File"%>
<%@page import="java.io.*"%>
<body>
<%
response.reset();
File file = new File(
"D:\\TNWRD_Documents\\Knowladge_Base\\Financial_and_Administrative_powers.pdf");
response.setHeader("Content-Type", "application/pdf");
response.setHeader("Content-Disposition","inline;filename=Saba_PhBill.pdf");
response.setContentLength((int)file.length());
//OPen an input stream to the file and post the file contents thru the
//servlet output stream to the browser
FileInputStream in = new FileInputStream(file);
ServletOutputStream outs = response.getOutputStream();
response.setContentLength(in.available());
byte[] buf = new byte[8192];
int c=0;
try {
while ((c = in.read(buf, 0, buf.length)) > 0)
{
//System.out.println("size:"+c);
outs.write(buf, 0, c);
}
} catch (IOException ioe) {
ioe.printStackTrace(System.out);
} finally {
outs.flush();
outs.close();
in.close();
}
%>
</body>
</html>
Facelets页面:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<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:a4j="http://richfaces.org/a4j"
xmlns:rich="http://richfaces.org/rich"
xmlns:my="http://example.com/jsf"
>
<h:form>
<table width="100%" border="1">
<tr></tr>
<tr>
<td align="left" width="200px"><rich:tree id="fileTree" toggleType="ajax" var="item">
<rich:treeModelRecursiveAdaptor
roots="#{fileSystemBean.sourceRoots}" nodes="#{item.directories}">
<rich:treeNode>
#{item.shortPath}
</rich:treeNode>
<rich:treeModelAdaptor nodes="#{item.files}">
<rich:treeNode>
<a4j:commandLink value="#{item}"
action="#{TnwrdAction.downloadFile}" oncomplete="openFile();" render="fileTree"
immediate="true">
<f:setPropertyActionListener value="#{item}"
target="#{TnwrdBean.fileName}" />
</a4j:commandLink>
</rich:treeNode>
</rich:treeModelAdaptor>
</rich:treeModelRecursiveAdaptor>
</rich:tree></td>
<td >
<ui:insert name="Barrage" >
<my:include page="/WEB-INF/jsp/page.jsp" />
</ui:insert>
</td>
</tr>
</table>
</h:form>
</ui:composition>
答案 0 :(得分:2)
此构造中至少存在两个主要错误。
首先,您不能使用<ui:include>
包含JSP文件。它只能包含Facelets文件。 JSP文件只会被视为“普通的”XML文件。此外,自JSF 2.0以来,JSP已被弃用。你不应该想到使用它。 <ui:include>
也是在输出中嵌入PDF文件的错误工具。您应该使用HTML <iframe>
或<object>
代替。
E.g。
<iframe src="/url/to/file.pdf" width="500" height="300"></iframe>
或更好
<object data="/url/to/file.pdf" type="application/pdf" width="500" height="300">
<a href="/url/to/file.pdf">Download file.pdf</a>
</object>
(当使用的浏览器不支持在HTML文档中内联<a>
内容时,application/pdf
链接意味着优雅降级,即当它没有Adobe Reader插件时安装)
或者如果您碰巧使用PrimeFaces
<p:media value="/url/to/file.pdf" width="500" height="300" />
其次,JSP是提供文件下载工作的错误工具。 JSP就像Facelets设计为一种视图技术,旨在使用taglib和EL轻松生成HTML输出。基本上,使用JSP方法,您的PDF文件会被<html>
和<body>
标记混乱,因此已损坏且无法识别为有效的PDF文件。这是using scriptlets is a bad practice的原因之一。它已经完全混淆了你应该如何工作。 Facelets不支持任何形式的 scriptlet ,因此“自动”强制您以正确的方式执行操作。在这种特殊情况下,即使用普通的Java类进行文件下载作业。
您应该使用servlet代替。这是一个启动示例,假设Servlet 3.0和Java 7可用:
@WebServlet("/Saba_PhBill.pdf")
public class PdfServlet extends HttpServlet {
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
File file = new File("D:\\TNWRD_Documents\\Knowladge_Base\\Financial_and_Administrative_powers.pdf");
response.setHeader("Content-Type", getServletContext().getMimeType(file.getName()));
response.setHeader("Content-Length", String.valueOf(file.length()));
response.setHeader("Content-Disposition", "inline; filename=\"Saba_PhBill.pdf\"");
Files.copy(file.toPath(), response.getOutputStream());
}
}
(顺便说一句,“Knowladge”中的一个严重错误,不确定这是否与具体问题有关)
只需在上面的HTML示例中将"/url/to/file.pdf"
替换为"#{request.contextPath}/Saba_PhBill.pdf"
即可调用它。在<p:media>
#{request.contextPath}
是不必要的。