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.

39 lines
803 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

@echo off
chcp 65001 > nul
echo ====================================
echo 中小学数学卷子自动生成程序
echo ====================================
echo.
echo 正在启动程序...
echo.
cd /d "%~dp0"
REM 检查Java环境
java -version > nul 2>&1
if errorlevel 1 (
echo 错误未找到Java环境请先安装Java
echo 下载地址https://www.oracle.com/java/technologies/downloads/
pause
exit /b 1
)
REM 检查是否已编译
if not exist "bin\App.class" (
echo 正在编译Java源文件...
javac -d bin src\*.java
if errorlevel 1 (
echo 编译失败,请检查错误信息!
pause
exit /b 1
)
echo 编译完成!
echo.
)
REM 运行程序
echo 启动数学试卷生成程序...
echo.
java -cp bin src.App
pause