現象
* Javaで、PostgreSQL に繋げた際にエラーが発生したのだが、
文字化けしてよく分からんので、まずは文字化けを解消する
エラー表示(文字化け)
org.postgresql.util.PSQLException: FATAL: ???[?U"postgres"???p?X???[?h?F???????s????????
解決策
[1] 「postgresql.conf」をテキストエディタで開く
=> デフォルトのファイルパス「C:\Program Files\PostgreSQL\9.3\data\postgresql.conf」
[2] 「c_messages = 'Japanese_Japan.932'」をコメントアウトし、
その後に「lc_messages = 'C'」を追加する
[3] PostgreSQL を再起動する
(3-1) [コントロールパネル]-[管理ツール]-[サービス] を選択
(3-2) 「postgresql-x64-X.X」 を右クリックし「再起動」を選択
# These settings are initialized by initdb, but they can be changed.
#lc_messages = 'Japanese_Japan.932' # locale for system error message strings
lc_messages = 'C'
エラー表示(修正後)
org.postgresql.util.PSQLException: FATAL: password authentication failed for user "xxxxx"