Open
Description
I try to parse an XML that comes from an iso-8859-1 API (somes strings have french accents).
Unfortunately, tikXml seems only to work with UTF-8.
I tried to use a TypeConverter :
`class StringUT8Converter : TypeConverter {
override fun read(value: String): String {
return String(value.toByteArray(Charsets.ISO_8859_1), Charsets.UTF_8)
}
override fun write(value: String): String {
return String(value.toByteArray(Charsets.UTF_8), Charsets.ISO_8859_1)
}
}
`
but it doesn't work.
Do you think you can include other encodings than UTF-8 (for poor old webservices 😝 )?
Thx
Metadata
Metadata
Assignees
Labels
No labels