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.
|
#!/bin/bash
|
|
# 启动WebSocket服务器脚本
|
|
|
|
echo "正在启动WebSocket服务器..."
|
|
|
|
# 检查web文件
|
|
if [ ! -f "web/index.html" ]; then
|
|
echo "错误: 找不到web/index.html文件"
|
|
echo "请确保在项目根目录运行此脚本"
|
|
exit 1
|
|
fi
|
|
|
|
cd bin
|
|
java -cp ".:../lib/gson-2.10.1.jar" server.WebSocketServer
|