开发者

log4j prints wrong characters

开发者 https://www.devze.com 2023-03-27 02:06 出处:网络
Somebody reports me that the program I gave him that uses log4j doesn\'t correctly print characters. He tells me that \"é\" gets print开发者_如何学Pythoned in the file as \"é\" (for example: \"Vid

Somebody reports me that the program I gave him that uses log4j doesn't correctly print characters. He tells me that "é" gets print开发者_如何学Pythoned in the file as "é" (for example: "Vidéo" becomes "Vidéo").

It's probably some encoding issue, but I like to reproduce problems to prove that it's fixed. I was unable to find good (and short) documentation on the subject so:

  1. What causes this problem (and how does log4j chose the encoding?)?
  2. Can it be fixed by simply using "log4j.appender.myappender.encoding=UTF-8" ?

Thank you for the help!


WriterAppender (which is the base class for FileAppender and its variants. Has a setEcoding method. So yes: using log4j.appender.myappender.encoding=UTF-8 should simply work.

Note, however, that "Vidéo" becoming "Vidéo" looks like it is writing UTF-8, but whatever you use to view the file interprets it as some other encoding (usually that's some ISO-8859-* encoding or one of the ISO-derivatives).

à is U+00C3 and © is U+00A9. They are encoded as 0xC3 and 0xA9 in ISO-8859-1.

é is U+00E9 which is encoded as 0xC3 0xA9 in UTF-8.


If your user is viewing the log files over SSH, then they need to tell their SSH client to use UTF-8 too.

0

精彩评论

暂无评论...
验证码 换一张
取 消