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.
|
@echo off
|
|
REM Windows启动WebSocket服务器脚本
|
|
|
|
echo 正在启动WebSocket服务器...
|
|
|
|
REM 检查web文件
|
|
if not exist "web\index.html" (
|
|
echo 错误: 找不到web\index.html文件
|
|
echo 请确保在项目根目录运行此脚本
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
cd bin
|
|
java -cp ".;..\lib\gson-2.10.1.jar" server.WebSocketServer
|