1. 程式人生 > >Android Studio解決Java程序輸出中文亂碼

Android Studio解決Java程序輸出中文亂碼

roc 中文 Coding str uil nbsp process option clas

經查閱資料,發現需要手動在build.gradle中添加代碼

//新版

tasks.withType(JavaCompile) { options.encoding = "UTF-8" }

//舊版,以gradle-1.12為例

tasks.withType(Compile) { options.encoding = "UTF-8" }

Android Studio解決Java程序輸出中文亂碼