大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺
背景:项目中实现pdf文件的预览以及下载
环境:jdk1.8、SpringBoot2.0、Maven
PDF.js下载地址: http://mozilla.github.io/pdf.js/getting_started/#download(下载2.1.266版本即可)
将下载的源码拷入项目中
修改viewer.js:
将defaultUrl: {
value: ‘compressed.tracemonkey-pldi-09.pdf’,—此处是默认的pdf的路径
kind: OptionKind.VIEWER
}
修改为:
defaultUrl: {
value: ”,
kind: OptionKind.VIEWER
}
打开新窗口预览:
<input type=”button” value=”预览” id=”viewBtn”>
<script type=”text/javascript”>
$(“#viewBtn”)
.click(
function() {
var curWwwPath = window.document.location.href;
var pathName = window.document.location.pathname;
var pos = curWwwPath.indexOf(pathName);
var localhostPath = curWwwPath.substring(0, pos);
//此处以get请求调用后台接口 并在新的窗口下打开此pdf文件
window.open("http://localhost:8081/api/file/preview?fileName=2019_PDF.pdf");
});
//后台controller代码,根据前端传入的fileName到指定目录读取pdf文件,进行展示
@RequestMapping(value = “/preview”, method = RequestMethod.GET)
public void prePDF(String fileName, HttpServletRequest request, HttpServletResponse response) {
logger.info(“文件名:” + fileName);
File file = new File(“E:/pdf/” + fileName);
if (file.exists()) {
byte[] data = null;
try {
FileInputStream input = new FileInputStream(file);
data = new byte[input.available()];
input.read(data);
response.getOutputStream().write(data);
input.close();
} catch (Exception e) {
logger.info(“pdf文件处理异常…”);
}
}
}
PDF文件下载:
<input type=”button” value=”下载” id=”download”>
$(“#download”).click(function() {
var form = $(“<form>”);
form.attr(“style”, “display:none”);
form.attr(“target”, “”);
form.attr(“method”, “post”);//提交方式为post
form.attr(“action”, “/downloadFile”);//定义action
$(“body”).append(form);
form.submit();
});
//这个例子是展示传的死的参数 如果想实现前台向后台传参 可以在Html中写一个form表单然后隐藏掉 在form表单中写入一个input 通过这个input进行传值
//例:
<form action="/api/file/downloadFile" style="display: none" method="post" id="downloadForm">
<input type="text" name="fileId" value="0" id="downloadFilename">
</form>
function downloadpdf(fileId) {
if(parseInt(fileId)==0){
layer.msg("暂无文件!")
}else {
// var form = $("<form>");
// var input = document.createElement('input'); //创建input节点
// input.setAttribute('type', 'text'); //定义类型是文本输入
// document.getElementsByTagName("input")[0].name="fileName";
// document.getElementsByName("fileName")[0].value="lalla";
// document.getElementsByTagName("form")[0].appendChild(input);
// form.attr("style", "display:none");
// form.attr("target", "");
// form.attr("method", "post");//提交方式为post
// form.attr("action", "/api/file/downloadFile");//定义action
document.getElementById("downloadFilename").value = fileId;
var form = document.getElementById("downloadForm");
$("body").append(form);
form.submit();
}
//我这里通过前台向后台传入了一个id 然后后台通过id在数据库中查询文件的地址
//若想传其他参数可以参考这个...
//后台代码
@RequestMapping(value=”/downloadFile”)
public void downloadFile(HttpServletResponse response) {
String downloadFilePath = “E:/pdf/”; //被下载的文件在服务器中的路径,
String fileName = “0602.pdf”; //被下载文件的名称
File file = new File(downloadFilePath+fileName);
if (file.exists()) {
// 设置强制下载不打开 针对于浏览器能打开的文件类型 如果不进行这一行的设置 浏览器并不会进行下载 而是直接在浏览器中打开
response.setContentType(“application/force-download”);
//当点击下载时 指定浏览器中弹出下载框的文件名 如果注释这段代码 文件名会默认显示为当前接口注解的名字(比如本文中的downloadFile)
response.addHeader(“Content-Disposition”, “attachment;fileName=” + fileName);
byte[] buffer = new byte[1024];
FileInputStream fis = null;
BufferedInputStream bis = null;
try {
fis = new FileInputStream(file);
bis = new BufferedInputStream(fis);
OutputStream outputStream = response.getOutputStream();
int i = bis.read(buffer);
while (i != -1) {
outputStream.write(buffer, 0, i);
i = bis.read(buffer);
}
} catch (Exception e) {
e.printStackTrace();
} finally {
if(bis != null) {
try {
bis.close();
}catch(IOException e) {
e.printStackTrace();
}
}
if(fis != null) {
try {
fis.close();
}catch(IOException e) {
e.printStackTrace();
}
}
}
}
}
预览页面顶部会有相应的工具栏,打印、下载、翻页、放大等,根据个人实际需要,可以查看页面源码,在viewer.html中注释掉相应的功能.
也可以通过pdfbox读取PDF文件内容:
引入jar包:
<!– PDF读取依赖 –>
<dependency>
<groupId>org.apache.pdfbox</groupId>
<artifactId>pdfbox</artifactId>
<version>2.0.4</version>
</dependency>
后台读取pdf文件代码:
public String viewPDF(String proCode,String fileName,String originPage, HttpServletRequest request) {
request.setAttribute(“dse_sessionId”, request.getParameter(“dse_sessionId”).trim());
logger.info(“披露报告预览文件名:” + fileName);
File file = new File(constant.getExposeLocalDir() + fileName);
if (!file.exists()) { // 文件不存在,则 从FTP下载文件到本地
}
}
//读取pdf文件内容-代码实现
try {
PDDocument document = PDDocument.load(file);
document.getClass();
if(!document.isEncrypted()) {
PDFTextStripperByArea stripper = new PDFTextStripperByArea();
stripper.setSortByPosition(true);
PDFTextStripper textStripper = new PDFTextStripper();
String exposeContent = textStripper.getText(document);
String[] content = exposeContent.split(“\\n”);
StringBuffer stringBuffer = new StringBuffer();
for(String line:content) {
stringBuffer.append(line);
}
}
} catch (Exception e) {
logger.info(“读取pdf文件异常…”);
}
return “”;
}
声明:本片文章转载自:https://blog.csdn.net/Xing_Pengfei/article/details/97649888
笔者只不过在此基础上稍微进行修改,笔者用的是Maven项目,可能和此位博客稍微有些不同
————————————————
版权声明:本文为CSDN博主「午夜学徒xpf」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/Xing_Pengfei/article/details/97649888
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/166427.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...