1
1

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.

Tomcat起動/停止を実行した際にコンソールが文字化けしている【解決方法】

Posted at

Tomcat起動(及び停止)を実行した際にコンソールが文字化けしている【解決方法】

Tomcatを起動する為「startup.bat」を実行した際に、
以下のように文字化けしている。

スクリーンショット 2023-12-30 151632.png

解決方法

Tomcatのconfフォルダにある「logging.properties」ファイルを編集すると解決出来ます。
「java.util.logging.ConsoleHandler.encoding」を検索して、指定している文字コードを変更します。
今回の場合UTF-8から、Windowsでよく使われる「SJIS」に変更しました。

java.util.logging.ConsoleHandler.encoding = SJIS

変更したらTomcatを再起動してください。

スクリーンショット 2023-12-30 153616.png

※Windowsでの操作方法を想定しています。

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?