在我的jsp页面中,我使用html对象显示pdf。在这里,我需要获取用户点击的页码。 这是我的jsp代码,其中显示了pdf文档。
<div class="showpdf" style="margin-left: 10%;">
<object id="pdfPage"
data="${pageContext.request.contextPath}/<%=session.getAttribute("fileName")%>"
type="application/pdf" width="191" height="207" title="">
</object>
</div>
这是我的servlet
File file = new File("D:/IIV 3 Project/Documents/Invoices/invoices/"+fileName+"");
response.setHeader("Content-Type", getServletContext().getMimeType(file.getName()));
response.setHeader("Content-Length", String.valueOf(file.length()));
response.setHeader("Content-Disposition", "inline; filename=\""+fileName+"\"");
Files.copy(file.toPath(), response.getOutputStream());