Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
1k views

Using PowerShell to write a file in UTF-8 without the BOM

Out-File seems to force the BOM when using UTF-8: $MyFile = Get-Content $MyPath $MyFile | Out-File -Encoding "UTF8" $MyPath How can I write a file in UTF-8 with no BOM using PowerShell?
5
votes
1answer
137 views

Why am I seeing a Byte Order Mark in my .NET Web Service all of a sudden?

I've written an ASMX web service, which has been running in production for years. Today, all of a sudden the Java clients are throwing errors when trying to parse the response. We tracked it down to a ...
1
vote
4answers
134 views

heroku not loading language file

Heroku does not seem to be loading config/locales/pt.yml. (Language is being set correctly to pt.) I18n is working perfectly on localhost, but not on my heroku server. Code is at ...
1
vote
2answers
215 views

Checkin changes to UTF8 BOM using git

I accidental checked in a utf8 encoded text file from windows without removing the BOM before. Now I tried to remove it in a later version and check-in this change again. It seems as git ignores the ...
1
vote
1answer
132 views

Byte Order Mark problem

I am having problem with byte order mark at the top of my php file. It is like - . For this there is an php warning is showing. I have removed the text twice. but it keeps coming. My file starts ...
1
vote
1answer
357 views

MSXMLWriter60 doesn't output byteOrderMark for UTF-16 encoding

I'm using a variant on code seen in "How to make XMLDOMDocument include the XML Declaration?" (which can also be seen at MSDN. If I change the encoding to "UTF-16" one would think it would output as ...
0
votes
3answers
612 views

How to tell ASCIIEncoding class not to decode the byte order mark

When decoding a byte array into a string using the .net ASCIIEncoding class do I need to write some code to detect and remove the byte order mark, or is it possible to tell ASCIIEncoding to not decode ...
0
votes
2answers
295 views

saxparser ignore byte order mark

Our saxparser does not ignore the byte order mark which appears at the starting of the file. How do I get my sax parser to ignore the byte order mark ?