java - Javadoc error: unmappable character for encoding ASCII -


im trying create javadoc can't.

i have written comments in swedish så content charachters å,ä,ö. giving me on 248 erros.

is there way change encoding whole project?

i have tried:

  1. right-clicked on project
  2. choosed resource
  3. change utf-8
  4. restarted eclipse
  5. create new javadoc

this results in following error:

error: unmappable character encoding ascii

is there else can solve problem?

specifying utf-8 resource encoding thing do, may perform following:

if generate javadoc using javadoc binary, may check -encoding parameter:

javadoc:  usage: javadoc [options] [packagenames] [sourcefiles] [@files] ... -encoding <name>          source file encoding name 

using eclipse, may specify option in field "extra javadoc options (...):" in last wizard step (example: -encoding utf-8).


Comments

Popular posts from this blog

java - WrongTypeOfReturnValue exception thrown when unit testing using mockito -

php - Magento - Deleted Base url key -

android - How to disable Button if EditText is empty ? -