[
Lists Home |
Date Index |
Thread Index
]
- From: David Brownell <david-b@pacbell.net>
- To: "'xml-dev@ic.ac.uk'" <xml-dev@ic.ac.uk>
- Date: Tue, 14 Sep 1999 08:27:53 -0700
"Hunter, David" wrote:
>
> So if my assumption is correct, you won't be able to do what you want and
> get the text back from MSXML in ISO-8859-2; only in Unicode.
That'd be true of any XML parser in Java ... however, one
can always write the java.lang.String (or character array)
data into an appropriate OutputStreamWriter:
Writer out = new OutputStreamWriter (
System.out,
"8859_2");
Most Java Virtual Machines don't accept the "ISO-8859-2" encoding
name, but they should accept "8859_2" instead (sigh).
- Dave
p.s. That doesn't mean that there aren't other reasons to avoid
using the MSXML parser; it's not very conformant.
xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ and on CD-ROM/ISBN 981-02-3594-1
To (un)subscribe, mailto:majordomo@ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo@ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@ic.ac.uk)
|