Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
325 views
in Technique[技术] by (71.8m points)

Kotlin with Intellij doesn't show non ascii characters

When I try to print a special character like "?, ?, ü, á, é, etc..." with

fun main() {
    println("?")
}

Intellij outputs:

>Task :FirsttryKt.main()
?
BUILD SUCCESSFUL in 1s
...

How can I print the "?" or other non ascii characters?

question from:https://stackoverflow.com/questions/65602626/kotlin-with-intellij-doesnt-show-non-ascii-characters

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

It's a known bug.

As a workaround you can add -Dfile.encoding=UTF-8 in Help | Edit Custom VM Options and restart IntelliJ IDEA.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...