How to set encoding in IntelliJ javadoc generating? -


while generating javadocs within intellij getting multiple errors files:

unmappable character encoding cp1251 

file encodings utf-8. found no places encoding control while javadoc generating.

you can pass options javadoc tool intellij idea. adding -encoding utf8 -docencoding utf8 -charset utf8 in other command line arguments text field should fix problem. -encoding specifies encoding of source files. -docencoding encoding of output html files , -charset charset specified in html head section of output files.


Comments

Popular posts from this blog

Android : Making Listview full screen -

javascript - Parse JSON from the body of the POST -

javascript - Chrome Extension: Interacting with iframe embedded within popup -