今天TJ君给爱学习的你们分享一个支持对接 S3、OneDrive、SharePoint、又拍云、本地存储、FTP 等存储源,支持在线浏览图片、播放音视频,文本文件等文件类型,小巧但不失实用的基于 JAVA 的在线网盘程序,ZFile
ZFile(关注公粽号“TJ君”,回复“zfile2022”,获取仓库地址)目前已经实现的功能有:
整体页面风格呢也是以简洁实用为主,没有过于花里胡哨的内容,ZFile的安装也是非常方便,只要那么几个步骤:
1、安装依赖环境
# centos系统
yum install -y java-1.8.0-openjdk unzip
# Debian 9 / Ubuntu 14+
apt update
apt install -y openjdk-8-jre-headless unzip
# Debian 10 (Buster) 系统
apt update && apt install -y apt-transport-https software-properties-common ca-certificates dirmngr gnupg
wget -qO - https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public | apt-key add -
add-apt-repository --yes https://adoptopenjdk.jfrog.io/adoptopenjdk/deb/
apt update && apt install -y adoptopenjdk-8-hotspot-jre
这里需要提示的是,如果不是新安装程序,而是更新程序,需要先执行下 ~/zfile/bin/stop.sh && rm -rf ~/zfile 命令用来清理旧程序。
2、下载项目
export ZFILE_INSTALL_PATH=~/zfile
mkdir -p $ZFILE_INSTALL_PATH && cd $ZFILE_INSTALL_PATH
wget https://c.jun6.NET/ZFILE/zfile-release.war
unzip zfile-release.war && rm -rf zfile-release.war
chmod +x $ZFILE_INSTALL_PATH/bin/*.sh
3、启动项目
~/zfile/bin/start.sh
就可以啦,是不是很方便很简单呢?想尝尝鲜的小伙伴赶紧来试试吧!