个人知识管理项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

29 lines
706 B

@echo off
REM 个人知识管理系统 - 中文支持版启动脚本
REM 设置控制台代码页为UTF-8
chcp 65001 > nul
REM 设置Java系统属性
set JAVA_OPTS=-Dfile.encoding=UTF-8 -Duser.language=zh -Duser.country=CN -Dconsole.encoding=UTF-8
echo ==========================================
echo 个人知识管理系统 (CLI版) - 中文支持版
echo ==========================================
echo.
REM 编译项目
echo 正在编译项目...
call mvn compile -q 2>nul
if exist target\classes (
echo 编译成功!
) else (
echo 编译失败,尝试使用现有class文件
)
echo.
echo 启动程序...
echo.
REM 启动程序
java %JAVA_OPTS% -cp "target/classes" com.example.App %*