返回列表 发帖

[其他] [已解决]无故出现乱码该如何处理?

本帖最后由 惆怅而又凄凉 于 2020-3-7 07:16 编辑
goto xydnro1
::NRO插件部署第一页
:xydnro1
echo.
echo.NRO使用方法详见官网《相关教程》板块。
echo.按任意键继续
pause > nul
goto xydnroCOPY
以上运行结果为
请输入你的选项 : 1
'��' is not recognized as an internal or external command,operable program or batch file.
NRO使用方法详见官网《相关教程》板块。
'��键继续' is not recognized as an internal or external command,operable program or batch file.COPY
然后我将bat修改为
goto xydnro1
::NRO插件部署第一页
:xydnro1
echo.
echo.NRO使用方法详见官网《相关教程》板块。
echo.按任意键继续
pause > nul
goto xydnroCOPY
仅仅只是在坐标和注释中间加了一个回车,
'��' is not recognized as an internal or external command,operable program or batch file.COPY
就消失不见了。

然后我修改批处理为:
echo.
echo.NRO使用方法详见官网“相关教程”板块。
echo.按任意键继续
pause > nul
goto xydnroCOPY
也是加一个回车就没有任何报错了。

批处理开头加了chcp 65001
文件也是utf8编码。
www.imxyd.com

貌似文件得用GBK编码。。。我VSCode一直都是用GBK编码,之前用utf-8老报错

TOP

回复 2# wujunkai


    啊~这么讽刺的嘛。。。
www.imxyd.com

TOP

回复 1# 惆怅而又凄凉


有什么特殊原因一定要使用utf8编码的bat文件吗?bat文件保存为ANSI编码可以吗
另外,不建议使用 :: 注释,建议改成 rem
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

回复 4# Batcher


    可以换其他编码的,所以就是utf8编码造成的吗?
我用utf8只是因为vs默认而已~没有什么特殊原因。
那么请问用GBK可以吗?vs好像没有ansi~
www.imxyd.com

TOP

回复 5# 惆怅而又凄凉 GBK的底层就是ansi啊

TOP

回复 5# 惆怅而又凄凉


    推荐bat文件保存为ASNI编码
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

回复 7# Batcher


    明白了,谢谢!
www.imxyd.com

TOP

返回列表