我们编码的时候最好一致改编码方式为UTF-8。
工程乱码 + UI乱码
控制台乱码
//解决中文乱码
//旧版
/*tasks.withType(Compile) {
options.encoding = "UTF-8"
}*/
//新版 2.0+
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
【欢迎上码】
【微信公众号搜索 h2o2s2】
我们编码的时候最好一致改编码方式为UTF-8。
//解决中文乱码
//旧版
/*tasks.withType(Compile) {
options.encoding = "UTF-8"
}*/
//新版 2.0+
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
【欢迎上码】
【微信公众号搜索 h2o2s2】