[
https://issues.apache.org/jira/browse/LOG4J2-1636?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15562719#comment-15562719
]
Gary Gregory edited comment on LOG4J2-1636 at 10/10/16 5:13 PM:
----------------------------------------------------------------
Java 7:
{code:java}
setOut0(new PrintStream(new BufferedOutputStream(fdOut, 128), true));
{code}
Java 8:
{code:java}
setOut0(newPrintStream(fdOut, props.getProperty("sun.stdout.encoding")));
{code}
Java 9 EA build 136
{code:java}
setOut0(newPrintStream(fdOut, props.getProperty("sun.stdout.encoding")));
setErr0(newPrintStream(fdErr, props.getProperty("sun.stderr.encoding")));
{code}
was (Author: garydgregory):
Java 7:
{code:java}
setOut0(new PrintStream(new BufferedOutputStream(fdOut, 128), true));
{code}
Java 8:
{code:java}
setOut0(newPrintStream(fdOut, props.getProperty("sun.stdout.encoding")));
{code}
> Bad console output encoding on windows
> --------------------------------------
>
> Key: LOG4J2-1636
> URL: https://issues.apache.org/jira/browse/LOG4J2-1636
> Project: Log4j 2
> Issue Type: Bug
> Components: Appenders, Layouts
> Environment: Windows
> Reporter: Eldar Gabdullin
> Assignee: Gary Gregory
>
> Default log4j configuration prints to console using platform's default
> encoding, however that's not what standard windows console expects.
> I.e.
> {code}
> System.out.println("Поехали"); // works just fine
> System.out.write("Поехали!\n".getBytes(Charset.defaultCharset())); //
> characters are messed up
> log.info("Поехали"); // messed up in the same way
> {code}
> This happens not just on one machine, but on all Windows desktops and servers
> in our organization.
> Can we have out of the box Layout/Appender which prints directly to
> System.out/err?
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]