Problems with charset encoding
Hi, my problem is the next: I'm working with Sync4j, and trying to sinchronize a Nokia E61 with OpenGroupware server. The problem is that when I receive the data from the device, it is supose to be in UTF-8, as it is said in the XML headers. I take this data in the next way:
byte[] xml_b =(byte[])syncItem.getPropertyValue(SyncItem.PROPERTY_BINARY_CONTENT);
When I contruct the String object, an print it, i get the next:
SUMMARY;ENCODING=QUOTED-PRINTABLE;CHARSET=UTF-8:T=C3=ADtulo
Where "T=C3=ADtulo" should be T韙ulo (obviously in Spanish).
With System.getProperty("file.encoding" );
I know that the charset encoding that I'm using isISO-8859-1, or I think.
Anyone can help me? I need to convert to a readable format.
Thanks

