org.yaml.snakeyaml.error.YAMLException: java.nio.charset.MalformedInputException: Input length = 1
在程序打包后 启动时出现
org.yaml.snakeyaml.error.YAMLException: java.nio.charset.MalformedInputException: Input length = 1
错误
原因是 yaml文件的编码问题
在启动是 加上
-Dfile.encoding=utf8
即可
java -jar -Dfile.encoding=utf8 system.jar
...
原创
2020-12-23 16:34:05 ·
490 阅读 ·
0 评论