From: Chris Jaekl Date: Sat, 12 Dec 2015 14:00:51 +0000 (+0900) Subject: DM_DEFAULT_ENCODING: Be explicit that we want the system default encoding. X-Git-Url: http://jaekl.net/gitweb/?p=cfb.git;a=commitdiff_plain;h=ef716e43b9cb65bfd20f92f16ed0e78b877e2fee DM_DEFAULT_ENCODING: Be explicit that we want the system default encoding. --- diff --git a/prod/net/jaekl/cfb/CFB.java b/prod/net/jaekl/cfb/CFB.java index 178dc2f..c088ca8 100644 --- a/prod/net/jaekl/cfb/CFB.java +++ b/prod/net/jaekl/cfb/CFB.java @@ -9,7 +9,9 @@ package net.jaekl.cfb; import java.io.File; import java.io.IOException; +import java.io.OutputStreamWriter; import java.io.PrintWriter; +import java.nio.charset.Charset; import java.sql.Connection; import java.sql.SQLException; import java.text.MessageFormat; @@ -246,7 +248,7 @@ public class CFB { public static void main(String[] args) { CFB cfb = new CFB(Locale.getDefault()); - try (PrintWriter pw = new PrintWriter(System.out)){ + try (PrintWriter pw = new PrintWriter(new OutputStreamWriter(System.out, Charset.defaultCharset()))) { cfb.doMain(pw, args); pw.flush(); } catch (SQLException | IOException | XmlParseException | SAXException | TypeMismatchException exc) {