Spring Boot搭建的一个在线文件预览系统!支持ppt、doc等多种类型文件预览
gitee项目地址
官网
首页:https://file.keking.cn/index
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org" >
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script th:src="@{${ctx} + '/js/jquery/jquery-3.2.1.min.js'}"></script>
<script>
$(function(){
var url = 'http://127.0.0.1:8080/staticFile/test1.ppt'; //要预览文件的访问地址
window.open('http://127.0.0.1:8012/onlinePreview?url='+encodeURIComponent(url));
})
</script>
</head>
<body>
hello
</body>
</html>
Spring Boot搭建在线文件预览系统
该博客介绍了用Spring Boot搭建的在线文件预览系统,支持ppt、doc等多种类型文件预览,还给出了gitee项目地址和官网首页,提到使用OpenOffice实现在线预览。
2485

被折叠的 条评论
为什么被折叠?



