显示Pdf文档

时间:2011-06-10 11:52:04

标签: java-ee

如何使用jsp或servlet在网页中显示PDF文档(非单独,仅在网页内)?

2 个答案:

答案 0 :(得分:0)

您需要使用<object><embed>标记来包含adobe reader并指向您的pdf文件。

类似于:<embed src="YourFile.pdf" width="500" height="375">

另一个答案:EMBED vs. OBJECT

答案 1 :(得分:0)

您需要在响应时为此设置内容类型。 call response.setContentType(“aplication / pdf”);在写任何东西之前。

相关问题