[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Malformed UTF-8 char
- From: Rick Jelliffe <ricko@allette.com.au>
- To: xml-dev@lists.xml.org
- Date: Tue, 11 Sep 2001 18:47:36 +1000
Try
<?xml version = "1.0" encoding = "iso8859-1"?>
If you have a hex editor, you can double check. If at the point you are
expecting è you have the hex code 0xE8 then you are probably using
ISO 8859-1. If it takes two bytes (with the first byte > 7F and the
second byte < 7F) then it should be UTF-8.
Cheers
Rick Jelliffe
----- Original Message -----
From: "Raffaele Bello" <raffaele.bello@eurotechsrl.it>
To: <xml-dev@lists.xml.org>
Sent: Tuesday, September 11, 2001 5:30 PM
Subject: Malformed UTF-8 char
Hi,
when I try to parse an xml document with character like "è" i got the following error:
org.xml.sax.SAXParseException: Character conversion error: "Malformed UTF-8 char
The strings in the xml document are in Italian, maybe I should use a different encoding?
I'd use
<?xml version = "1.0" encoding = "UTF-8"?>
Thanks