0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

WindowsでTomcat起動時のコンソール文字化け

Posted at

Windows+Tomcat環境でTomcatを起動すると(tomcat\bin\startup.bat)、コマンドプロンプトはSJISで表示するのに対し、TomcatのログがUTF-8になっているため、日本語表示で文字化けが発生します。

tomcat\conf\logging.propertiesを開き、51行目を以下のようにSJISに変更します。

tomcat\conf\logging.properties
# java.util.logging.ConsoleHandler.encoding = UTF-8
java.util.logging.ConsoleHandler.encoding = SJIS

これで再度Tomcatを起動すると、日本語部分の文字化けは解消される。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?