kkFileView icon indicating copy to clipboard operation
kkFileView copied to clipboard

Universal File Online Preview Project based on Spring-Boot

Results 294 kkFileView issues
Sort by recently updated
recently updated
newest added
trafficstars

### 文件多大 如果是几百页的文件,第一次访问的时候是不是太慢了,这个有什么解决办法呢? ### 文件保存位置 还有就是,文件是不是需要保存在一个文件管理系统中呢,比如fastdfs之类的,直接保存在服务器上一个是占用大量空间(好像删除前端点击删除文件操作也不会把文件从服务器中删除),还有就是如果是多台机器,文件只保存在一个服务器上那其他及其岂不是访问不到了么?

![image](https://user-images.githubusercontent.com/50973219/176102333-5207c79c-03dc-4d5f-bd27-861d8646c438.png)

原文档效果: ![image](https://user-images.githubusercontent.com/46801445/175840242-cc82a2ff-f934-44f7-8d55-1173c938ceda.png) 部署至linux下效果: ![image](https://user-images.githubusercontent.com/46801445/175840293-7348c924-38c8-4bf9-824d-5bc3394dfad6.png)

![image](https://user-images.githubusercontent.com/50973219/174426327-79e27dcc-5800-422e-9d67-c9a6eb32917b.png) ![image](https://user-images.githubusercontent.com/50973219/174426344-70fdf981-8d3b-4f34-b9d9-82dd575c9da4.png) 脚本中提供的目录是RPMS,但是我手动解压出来的目录是是DEBS

properties文件如果配置了原生的变量,会报异常 ![image](https://user-images.githubusercontent.com/19967081/172524374-3466ab8a-a8d2-48ca-a982-c68b29cbfe7c.png) ![image](https://user-images.githubusercontent.com/19967081/172524267-88fbd4ba-1b73-4de0-b5cc-9707d3bca0c2.png) ![image](https://user-images.githubusercontent.com/19967081/172524297-8278f626-2139-43a7-9e62-e5854185d5bc.png)

请问一下:kkFileView文件是存放在机器本地,是不是不支持集群模式部署?

重现步骤: 1. ps aux | grep soffice.bin | grep -v grep 查看是否有office进程,如果有就杀掉(我本地确定没有office进程了) 2. 进入kkFileView-3.5.1/bin 执行 `./startup.sh` 3. 查看日志: ``` 2021-05-25 02:37:50.116 INFO 49865 --- [ main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService...

基于freemarker生成的word文件,在预览时文件是xml形式。 freemarker版本:2.3.4.RELEASE kkFileView版本: viewserver-4.0.0、libreoffice7.0

问一个文档安全问题,如果只想让预览不想让下载,程序是否可以实现? 目前通过在线demo来看,文档的路径只是经过了base64Encode和encodeURIComponent转换 var url = 'http://127.0.0.1:8080/file/test.txt'; //要预览文件的访问地址 window.open('http://127.0.0.1:8012/onlinePreview?url='+encodeURIComponent(base64Encode(url))); 但是通过decodeURIComponent和base64Decode就可以看到文档的源路径,就可以直接下载了