Java, UTF-8 and Windows console - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T19:49:22Z http://stackoverflow.com/feeds/question/54952 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/54952/java-utf-8-and-windows-console 1 Java, UTF-8 and Windows console Teetoo 2008-09-10T18:30:55Z 2008-11-05T16:32:56Z <p>We try to use Java and UTF-8 on Windows. The application writes logs on the console, and we would like to use UTF-8 for the logs as our application has internationalized logs.</p> <p>It is possible to configure the JVM so it generates UTF-8, using <code>-Dfile.encoding=UTF-8</code> as arguments to the JVM. It works fine, but the output on a Windows console is garbled.</p> <p>Then, we can set the code page of the console to 65001 (<code>chcp 65001</code>), but in this case, the <code>.bat</code> files do not work. This means that when we try to launch our application through our script (named start.bat), absolutely nothing happens. The command simple returns:</p> <pre><code>C:\Application&gt; chcp 65001 Activated code page: 65001 C:\Application&gt; start.bat C:\Application&gt; </code></pre> <p>But without <code>chcp 65001</code>, there is no problem, and the application can be launched.</p> <p>Any hints about that?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/54952/java-utf-8-and-windows-console/55078#55078 1 Answer by svrist for Java, UTF-8 and Windows console svrist 2008-09-10T19:17:58Z 2008-09-10T19:17:58Z <p>Just a wild guess: Could windows be mad about start.bat not being of code page 65001 ?</p> http://stackoverflow.com/questions/54952/java-utf-8-and-windows-console/55262#55262 0 Answer by sblundy for Java, UTF-8 and Windows console sblundy 2008-09-10T20:36:51Z 2008-09-10T20:36:51Z <p>Have you tried <a href="http://en.wikipedia.org/wiki/PowerShell" rel="nofollow">PowerShell</a> rather than old cmd.exe.</p> http://stackoverflow.com/questions/54952/java-utf-8-and-windows-console/55307#55307 1 Answer by erickson for Java, UTF-8 and Windows console erickson 2008-09-10T20:55:48Z 2008-09-10T20:55:48Z <p>Try <code>chcp 65001 &amp;&amp; start.bat</code></p> http://stackoverflow.com/questions/54952/java-utf-8-and-windows-console/265734#265734 0 Answer by Renato Soffiatto for Java, UTF-8 and Windows console Renato Soffiatto 2008-11-05T16:32:56Z 2008-11-05T16:32:56Z <p>We had some similar problems in Linux. Our code was in ISO-8859-1 (mostly cp-1252 compatible) but the console was UTF-8, making the code to not compile. Simply changing the console to ISO-8859-1 would make the build script, in UTF-8, to break. We found a couple of choices:<br> 1- define some standard encoding and sticky to it. That was our choice. We choose to keep all in ISO-8859-1, modifying the build scripts.<br> 2- Setting the encoding before starting any task, even inside the build scripts. Some code like the erickson said. In Linux was like :</p> <pre><code>lang=pt_BR.ISO-8859-1 /usr/local/xxxx </code></pre> <p>My eclipse is still like this. Both do work well.</p>