[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

utf-16 little endian byte order mark with libxml-ruby

Tim Perrett

7/25/2007 9:25:00 AM

Hey all

I am producting an xml file for which is destined to be used by another
application, and after some investigation I have found that there parser
always looks for a BOM at the begining of a file, indicating that the
encoding is UTF-16.

When I call @document.encoding = 'utf-16' on my xml document it does
appear to attach the BOM to the begining of the file, but then doesnt
output the rest of the xml?! If I change back to utf-8 everything works
perfectly fine. Has anyone done any utf-16 parsing/creation with libxml
before?

The characters used as the BOM are "ÿþ" (<Latin small letter y with
diaeresis, Latin small letter thorn>, <U+00FF U+00FE>).

Any help would be great

Cheers

Tim
--
Posted via http://www.ruby-....

1 Answer

Tim Perrett

7/25/2007 12:50:00 PM

0

It appears that the save() method on XML::Document will create files if
none exsist and add the bom for you :) brilliant!!
- Tim
--
Posted via http://www.ruby-....