2019-11-11
一、设置IDEA的Gradle vm option
在file-> setting -> build -> build tools -> gradle -> Gradle VM Options中添加
-Dfile.encoding=utf-8
二、在build.gralde添加
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
ps: 我是两种方式都试验了之后才解决这个问题的
参考:https://www.jianshu.com/p/606fffadd47f
https://blog.csdn.net/u011054333/article/details/54175641
网友评论