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:
- right-clicked on project
- choosed resource
- change utf-8
- restarted eclipse
- 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
Post a Comment