IDEA-gradle-控制檯亂碼

配置IDEA

  • Help–>Edit Custom VM Options
  • 添加一行這個屬性
-Dfile.encoding=UTF-8

項目添加

  • 在build.gradle文件中添加
tasks.withType(JavaCompile) {
    options.encoding = "UTF-8"
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章