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
REM Windows编译命令行版本脚本
echo 正在编译命令行版本...
REM 创建输出目录
ifnotexist bin mkdir bin
REM 编译命令行版本(不包含WebSocket相关类)
javac -d bin -encoding UTF-8 src/common/Message.java src/common/MessageType.java src/server/ChatServer.java src/server/ClientHandler.java src/client/ChatClient.java