Commit Graph
3 Commits
Author SHA1 Message Date
liuzhandCopilot 549cc79dc6 fix: 修复Windows终端UTF-8编码问题,恢复emoji字符
根因: System.out使用平台默认编码(CP936/GBK),emoji无法编码显示为?。
修复方案:
1. JVM参数: -Dstdout.encoding=UTF-8 -Dstderr.encoding=UTF-8 -Dfile.encoding=UTF-8
2. 代码层: PrintStream使用StandardCharsets.UTF_8
3. 启动脚本: run.bat添加chcp 65001, run.ps1设置Console编码

同时revert之前的emoji→ASCII替换,恢复原始emoji符号。

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-01 20:44:23 +08:00
liuzhandCopilot b7ad7956c0 fix: 启动脚本添加MAVEN_OPTS抑制JDK25兼容性警告
设置--enable-native-access和--sun-misc-unsafe-memory-access
消除Maven自身jansi和guava在JDK25下的WARNING输出

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-01 20:32:45 +08:00
liuzhandCopilot f3ded93fec chore: 添加PowerShell启动脚本run.ps1
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-01 20:31:23 +08:00