今天在用Android studio 中敲代码时发现控制台出不了汉字,一打汉字全是乱码的。在此特供解决方案。
在Java的工程目录build.gradle下添加如下代码:
1.新版gradle
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
2.旧版gradle
tasks.withType(Compile) {
options.encoding = "UTF-8"
}
今天在用Android studio 中敲代码时发现控制台出不了汉字,一打汉字全是乱码的。在此特供解决方案。
在Java的工程目录build.gradle下添加如下代码:
1.新版gradle
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
2.旧版gradle
tasks.withType(Compile) {
options.encoding = "UTF-8"
}