如何使用jsp或servlet在网页中显示PDF文档(非单独,仅在网页内)?
答案 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”);在写任何东西之前。