I use the XOM Library to import a xml file to database.
This is how I initialize the library:
The import of data is ok, but this code is incompatible with accented characters in file.
How can I fix it?
Thanks in advance.
This is how I initialize the library:
B4X:
Dim XOMBuilder1 As XOMBuilder
XOMBuilder1.Initialize("XOMBuilder1")
Dim XmlString As String = File.GetText(File.DirAssets, "myfile.xml")
XOMBuilder1.BuildFromString(XmlString, "", Null)
The import of data is ok, but this code is incompatible with accented characters in file.
How can I fix it?
Thanks in advance.