0 kkFileView部署指南
陈精华 edited this page 2019-06-21 13:39:24 +08:00
This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

1. 环境要求

  1. Java: 1.8+
  2. OpenOffice或LiberOffice(Windows下已内置CentOS或Ubuntu下会自动下载安装MacOS下需要自行安装)

2. 部署运行

1). 物理机或虚拟机上运行

  1. 码云发行版本 下载最新版发行包
  2. 解压kkFileView-2.x.x.zip包
  3. 打开解压后文件夹的bin目录运行startup脚本Windows下以管理员身份运行startup.batLinux以root用户运行startup.sh
  4. 浏览器访问本机8012端口http://127.0.0.1:8012 )即可看到项目演示用首页

2). Docker容器环境环境运行

  1. 拉取镜像
docker pull keking/kkfileview
  1. 运行
docker run -it -p 8012:8012 keking/kkfileview
  1. 浏览器访问容器8012端口http://xxx.xxx.xxx.xxx:8012 )即可看到项目演示用首页

3. 项目接入使用

当您的项目内需要预览文件时只需要调用浏览器打开本项目的预览接口并传入须要预览文件的url示例如下

var url = 'http://127.0.0.1:8080/file/test.txt'; //要预览文件的访问地址
window.open('http://127.0.0.1:8012/onlinePreview?url='+encodeURIComponent(previewUrl));

详细使用说明见 kkFileView使用指南