Tagged Questions

2
votes
5answers
186 views

Why can’t I use the map function to create a good hash from a simple data file in Perl?

The post is updated. Please kindly jump to the Solution part, if you've already read the posted question. Thanks! Here's the minimized code to exhibit my problem: The input data …
3
votes
3answers
1k views

XML - Data At Root Level is Invalid

I have an XSD file that is encoded in UTF-8, and any text editor I run it through doesn't show any character at the beginning of the file, but when I pull it up in Visual Studio's …
0
votes
2answers
31 views

How can i remove BOM from XmlTextWriter using C#

Hi, i need to remove the BOM from an XML file that is being created. I have tried using the new UTF8Encoding(false) method but it doesnt work. Here is the code i have: XmlDocument …
1
vote
2answers
33 views

ASP.NET: BOM in Server.Execute()

I'm using this to write to the Response stream: using (var writer = new StringWriter()) { context.Server.Execute(virtualpath, writer); string s = writer.To …
0
votes
3answers
45 views

Change encoding to UTF-8 recursively on Windows?

Does anybody know a tool, preferably for the Explorer context menu, to recursively change the encoding of files in a project from / to UTF-8 and other encodings? Freeware or not to …
1
vote
3answers
129 views

Prepend BOM to XML response from Django

I use Django's render_to_response to return an XML document. This particular XML document is intended for a flash-based charting library. The library requires that the XML docume …
0
votes
0answers
140 views

 character (UTF-8 BOM) in middle of ASP.NET response due to HttpResponse.TransmitFile()

I've seen this post:  characters appended to the begining of each file. In that case, the author was manually reading the source file and writing the contents. In my case, I'm …
3
votes
3answers
860 views

How to avoid tripping over UTF-8 BOM when reading files

I'm consuming a data feed that has recently added a Unicode BOM header (U+FEFF), and my rake task is now messed up by it. I can skip the first 3 bytes with file.gets[3..-1] but is …
0
votes
3answers
129 views

How can I identify different encodings without the use of a BOM?

I have a file watcher that is grabbing content from a growing file encoded with utf-16LE. The first bit of data written to it has the BOM available -- I was using this to identify …
0
votes
1answer
196 views

In .NET, how do I write a UTF-16 XMLDocument to a string with a BOM

I am building an XmlDocument on the fly in .NET with an xml document. I then transform that with the Transform() method of an XslCompiledTransform. The Transform() method threw an …
3
votes
5answers
1k views

Remove Byte Order Mark from a File.ReadAllBytes (byte[])

I have an HTTPHandler that is reading in a set of CSS files and combining them and then GZipping them. However, some of the CSS files contain a Byte Order Mark (due to a bug in TF …
1
vote
1answer
242 views

Using awk to remove the Byte-order mark

Hi, has anyone an idea how an awk script (presumably a one-liner) fro removing a BOM would look like? Specification: print every line after the first (NR > 1) for the first …
0
votes
5answers
250 views

Why would I use a Unicode Signature Byte-Order-Mark (BOM)?

Are these obsolete? They seem like the worst idea ever -- embed something in the contents of your file that no one can see, but impacts the file's functionality. I don't understand …
4
votes
3answers
568 views

Write to utf-8 file in python

I'm really confused with the codecs.open function. When I do: file = codecs.open("temp", "w", "utf-8") file.write(codecs.BOM_UTF8) file.close() It gives me the error UnicodeDec …
2
votes
4answers
734 views

How do I encode/decode UTF-16LE byte arrays with a BOM?

I need to encode/decode UTF-16 byte arrays to and from java.lang.String. The byte arrays are given to me with a Byte Order Marker (BOM), and I need to encoded byte arrays with a BO …

1 2 next
15 30 50 per page