My application is running on PocketPC 2002. The application gets the Contacts and Addresses from pocket and inserts them into a XML file.
This file needs to be with UTF-8 encoding. So far, I managed to insert all data with unicode support into this file with transformation from wide-char to multybyte strings functions.
I have a one question: how could I insert the BOM descriptor for this new created XML file?
Thanks,
Lucian
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
You shouldn't need it. If you set the encoding to "UTF-8" in the declaration it will work fine without the BOM tags. That's easier than getting the BOMs correct.
lee
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
hello!
Just started to work with TinyXML.
My application is running on PocketPC 2002. The application gets the Contacts and Addresses from pocket and inserts them into a XML file.
This file needs to be with UTF-8 encoding. So far, I managed to insert all data with unicode support into this file with transformation from wide-char to multybyte strings functions.
I have a one question: how could I insert the BOM descriptor for this new created XML file?
Thanks,
Lucian
You shouldn't need it. If you set the encoding to "UTF-8" in the declaration it will work fine without the BOM tags. That's easier than getting the BOMs correct.
lee