From cc812436bb9b2d26862824ac8f8b896dfe73eee3 Mon Sep 17 00:00:00 2001 From: tromey Date: Thu, 6 Sep 2001 17:16:09 +0000 Subject: * java/util/Properties.java: Re-merged from Classpath. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45442 138bc75d-0d04-0410-961f-82ee72b054a4 --- libjava/java/util/Properties.java | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'libjava/java') diff --git a/libjava/java/util/Properties.java b/libjava/java/util/Properties.java index dc679faf126..5812173c91f 100644 --- a/libjava/java/util/Properties.java +++ b/libjava/java/util/Properties.java @@ -1,5 +1,5 @@ /* java.util.Properties - Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc. + Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -61,7 +61,8 @@ import java.io.*; * of get/put. * * @see PropertyResourceBundle - * @author Jochen Hoenicke */ + * @author Jochen Hoenicke + */ public class Properties extends Hashtable { /** @@ -128,8 +129,9 @@ public class Properties extends Hashtable * from the input. */ public void load(InputStream inStream) throws IOException { + // The spec says that the file must be encoded using ISO-8859-1. BufferedReader reader = - new BufferedReader(new InputStreamReader(inStream)); + new BufferedReader(new InputStreamReader(inStream, "ISO-8859-1")); String line; while ((line = reader.readLine()) != null) @@ -302,7 +304,9 @@ public class Properties extends Hashtable */ public void store(OutputStream out, String header) throws IOException { - PrintWriter writer = new PrintWriter(out); + // The spec says that the file must be encoded using ISO-8859-1. + PrintWriter writer + = new PrintWriter(new OutputStreamWriter (out, "ISO-8859-1")); if (header != null) writer.println("#" + header); writer.println("#" + new Date().toString()); -- cgit v1.2.3