vote up 4 vote down star
1

What's the easiest way to convert XML from UTF16 to a UTF8 encoded file?

flag

1 Answer

vote up 5 vote down check

This may not be the most optimal, but it works. Simply load the xml and push it back out to a file. the xml heading is lost though, so this has to be re-added.

$files = get-ChildItem "*.xml"
foreach ( $file in $files )
{
    [System.Xml.XmlDocument]$doc = new-object System.Xml.XmlDocument;
    $doc.set_PreserveWhiteSpace( $true );
    $doc.Load( $file );

    $root = $doc.get_DocumentElement();
    $xml = $root.get_outerXml();
    $xml = "<?xml version=`"1.0`" encoding=`"utf-8`"?>" + $xml

    $newFile = $file.Name + ".new"
    Set-Content -Encoding UTF8 $newFile $xml;
}
link|flag
Shouldn't you explicitly set the encoding to save somewhere? – Johannes Rössel Apr 15 at 5:52
If I knew how, I would. It appears to be the default though. – Ben Laan Apr 15 at 6:24
-Encoding parameter. – JasonMArcher Apr 16 at 1:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.