This is the mail archive of the
java-discuss@sources.redhat.com
mailing list for the Java project.
Re: java.util.Properties
- To: Urban Widmark <urban at svenskatest dot se>
- Subject: Re: java.util.Properties
- From: Tom Tromey <tromey at cygnus dot com>
- Date: 07 Oct 2000 12:18:18 -0600
- Cc: java-discuss at sources dot redhat dot com
- References: <Pine.LNX.4.21.0009300236250.25853-100000@cola.svenskatest.se>
- Reply-To: tromey at cygnus dot com
>>>>> "Urban" == Urban Widmark <urban@svenskatest.se> writes:
Urban> The libgcj (and Classpath) java.util.Properties appears to have
Urban> problems with encoding values (and keys for Classpath) for
Urban> writing.
I fixed this by changing java.util.Properties to always quote a space
in the key. I also merged the libgcj implementation and the Classpath
implementations of this class. Mostly I took the Classpath
implementation, except I used the libgcj propertyNames method -- it
has a couple properties mentioned in the JCL book that the Classpath
method did not have.
I also wrote and checked in a Mauve test for this case.
Urban> Is libgcj/Classpath aiming for 1.1 or 1.2 compatibility?
libgcj is mostly 1.1 but moving to 1.2 is something we'd like to do.
I think it makes sense to always aim for the latest official Sun
release.
Tom