Featured Post

Passwordless ssh configuration

Simple step-by-step guide to config passwordless ssh access

Wednesday, April 3, 2013

Eclipse console cyrillic symbols problem


Cyrillic symbols incorrectly displayed in Eclipse console.

Just try this:

  Run, Open run dialog...

 then locate the class where the main method is, then select Arguments tab,
 and write

  -Dfile.encoding=UTF-8

 in VM arguments text field. Then, select Common tab, and for Console
 Encoding select "Other: UTF-8".

 After that, you should be able to see cyrillic characters on the console.

The point here is to set the same encoding in both places.


Original post