妈呀,真人机

This commit is contained in:
lilingfengdev 2024-08-25 17:34:42 +08:00 committed by GitHub
parent 3d7d48950a
commit b7a1ad2a37
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -135,6 +135,19 @@ set https_proxy=http://127.0.0.1:7890
> 大佬们,浏览器能用不是 cmd 能用,不然你猜我为什么写这个。
#### 中文乱码
### 中文乱码
如果你用的是Windows,你需要在启动脚本**最前面**加上`chcp 65001`
如果你用的是Windows,你需要在启动脚本**最前面**加上`chcp 65001`
比如你原来的启动脚本长这样
```shell
java -Xms2G -Xmx2G -jar server.jar --nogui
```
你需要改成这样
```shell
chcp 65001
java -Xms2G -Xmx2G -jar server.jar --nogui
```