Tagged Questions
BOM stands for Byte Order Mark.
38
votes
7answers
10k views
What's different between utf-8 and utf-8 without BOM?
What`s different between utf-8 and utf-8 without BOM? Which is better?
16
votes
2answers
9k 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 debugger, I clearly ...
15
votes
3answers
9k 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
UnicodeDecodeError: 'ascii' ...
15
votes
4answers
2k views
How Can I Best Guess the Encoding when the BOM (Byte Order Mark) is Missing?
My program has to read files that use various encodings. They may be ANSI, UTF-8 or UTF-16 (big or little endian).
When the BOM (Byte Order Mark) is there, I have no problem. I know if the file is ...
13
votes
3answers
5k views
Using awk to remove the Byte-order mark
has anyone an idea how an awk script (presumably a one-liner) for removing a BOM would look like?
Specification:
print every line after the first (NR > 1)
for the first line: If it starts with ...
12
votes
5answers
9k views
Write text files without Byte Order Mark (BOM)?
I am trying to create a text file using VB.Net with UTF8 encoding, without BOM. Can anybody help me, how to do this?
I can write file with UTF8 encoding but, how to remove Byte Order Mark from it?
...
11
votes
3answers
260 views
Is the byte order marker really a valid identifier?
C++11 makes numerous additions to the list of Unicode code points allowed in identifiers (§E). This includes the byte order mark, which is included in range FE47-FFFD.
Consulting a character ...
10
votes
9answers
5k views
How can I output a UTF-8 CSV in PHP that Excel will read properly?
I've got this very simple thing that just outputs some stuff in CSV format, but it's got to be UTF-8. I open this file in TextEdit or TextMate or Dreamweaver and it displays UTF-8 characters properly, ...
10
votes
1answer
2k views
Working with utf-8 files in Eclipse
Quite straight forward question. Is there a way to configure Eclipse to work with text files encoded with utf-8 with and without the BOM?
So far I've used eclipse with utf-8 encoding and it works, ...
8
votes
6answers
4k views
How do I remove  from the beginning of a file?
I have a CSS file that looks fine when I open it using gedit, but when it's read by PHP (to merge all the CSS files into one), this CSS has the following chars prepended to it: 
PHP removes all ...
7
votes
3answers
146 views
How do you get Matlab to write the BOM (byte order markers) for UTF-16 text files?
I am creating UTF16 text files with Matlab, which I am later reading in using Java. In Matlab, I open a file called fileName and write to it as follows:
fid = fopen(fileName, 'w','n','UTF16-LE');
...
7
votes
5answers
5k views
Byte order mark screws up file reading in Java
I'm trying to read CSV files using Java. Some of the files may have a byte order mark in the beginning, but not all. When present, the byte order gets read along with the rest of the first line, thus ...
6
votes
1answer
597 views
Removing byte-order marks (BOMs) using Emacs
I have a file containing UTF-8 encoded text with a byte-order mark. This BOM is getting in the way of things, and I'd like to remove it.
Resorting to either other tools, such as perl or awk, or weird ...
6
votes
4answers
5k 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 BOM.
Also, because ...
5
votes
1answer
201 views
Export UTF-8 BOM to .csv in R
I am reading a file through RJDBC from a MySQL database and it correctly displays all letters in R (e.g., נווה שאנן).
However, even when exporting it using write.csv and fileEncoding="UTF-8" the ...
5
votes
6answers
3k views
UTF-8 BOM signature in PHP files
I was writing some commented PHP classes and I stumbled upon a problem. My name (for the @author tag) ends up with a ș (which is a UTF-8 character, ...and a strange name, I know).
Even though I save ...
5
votes
7answers
6k 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 TFS 2005 auto merge) ...
4
votes
2answers
90 views
Convert UTF-8 with BOM to UTF-8 with no BOM in Python
Two questions here. I have a set of files which are usually UTF-8 with BOM. I'd like to convert them (ideally in place) to UTF-8 with no BOM. It seems like codecs.StreamRecoder(stream, encode, decode, ...
4
votes
2answers
109 views
is unicode( codecs.BOM_UTF8, “utf8” ) necessary in Python 2.7/3?
In a code review I came across the following code:
# Python bug that renders the unicode identifier (0xEF 0xBB 0xBF)
# as a character.
# If untreated, it can prevent the page from validating or ...
4
votes
1answer
262 views
WebClient.UploadString method doesn't emit BOM. Why?
The intent of the following code is to post data that's begins with byte order mark (BOM) over HTTP.
var client = new WebClient();
client.Encoding = new UTF8Encoding(true /* ...
4
votes
6answers
1k views
How to detect the character encoding of a text file?
I try to detect which character encoding is used in my file.
I try with this code to get the standard encoding
public static Encoding GetFileEncoding(string srcFile)
{
// *** Use Default ...
4
votes
2answers
1k views
Dealing with UTF-8 numbers in Python
Suppose I am reading a file containing 3 comma separated numbers. The file was saved with with an unknown encoding, so far I am dealing with ANSI and UTF-8. If the file was in UTF-8 and it had 1 row ...
4
votes
4answers
1k views
What's the difference between the Browser Object Model and the Document Object Model?
What is the difference between the two?
4
votes
2answers
3k 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 there a more ...
3
votes
1answer
145 views
Is it possible to get GCC to compile UTF-8 with BOM source files?
I develop C++ cross platform using Microsoft Visual Studio on Windows and GCC on uBuntu Linux.
In Visual Studio I can use unicode symbols like "π" and "²" in my code. Visual Studio always saves the ...
3
votes
3answers
192 views
How can I identify different encodings against files without the use of a BOM and beginning with non-ASCII character?
I got a problem when trying to identify the encoding of a file without BOM, particularly when the file is beginning with non-ascii characters.
I found following two topics about how to identify ...
3
votes
3answers
2k views
XDocument: saving XML to file without BOM
I'm generating an utf-8 XML file using XDocument.
XDocument xml_document = new XDocument(
new XDeclaration("1.0", "utf-8", null),
new XElement(ROOT_NAME, ...
3
votes
1answer
512 views
JAXB2 Mtom attachment broken by BOM
I'm using JAXB2 to to do OXM in a Spring-WS. The XSD I've specified requires a large XML file to be attached to the soap message so I'm using MTOM to transfer the file and have enabled MTOM on my ...
3
votes
3answers
1k views
How to GetBytes() in C# with UTF8 encoding with BOM?
I'm having a problem with UTF8 encoding in my asp.net mvc 2 application in C#. I'm trying let user download a simple text file from a string. I am trying to get bytes array with the following line:
...
3
votes
4answers
1k views
XmlReader breaks on UTF-8 BOM
I have the following XML Parsing code in my application:
public static XElement Parse(string xml, string xsdFilename)
{
var readerSettings = new XmlReaderSettings
{
...
3
votes
1answer
1k views
Create Text File Without BOM
I tried this aproach without any success
the code I'm using:
// File name
String filename = String.Format("{0:ddMMyyHHmm}", dtFileCreated);
String filePath = ...
3
votes
1answer
627 views
How to force Visual Studio to honor the BOM at the start of a UTF-8 encoded CSS file?
Apparently, when Visual Studio 2008 (SP1) opens a CSS file, it doesn't recognize the UTF8 BOM marker as a BOM, but instead interprets it as text (first three characters show up as , but shouldn't ...
3
votes
5answers
324 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 file for test has ...
3
votes
7answers
1k 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 why I would want ...
2
votes
1answer
44 views
Do UTF-8 encoded HTML documents ususally start with a BOM?
For a Rich Text (RTF) to HTML / XHTML converter I am writing, which generates UTF-8 encoded HTML pages, I consider to add the option to include a BOM.
But should the generation of a BOM be disabled ...
2
votes
3answers
188 views
Why does VIM disregard my file's BOM?
I need a file that I want to make sure is encoded with utf8.
So, I create the file
c:\> gvim umlaute.txt
In VIM I type the Umlaute:
äöü
I check the encoding ...
:set enc
(VIM echoes ...
2
votes
2answers
403 views
Validation error: Byte-Order Mark found in UTF-8 File
I'm working on a website and while displaying it on Firefox is fine, on IE I've got a lot of problems. I used the w3c validator and I got a lot of strange errors.
Here's the link to the website: ...
2
votes
1answer
200 views
Writing text file in Ant with UTF-16 encoding and BOM
I need to generate a file in my ant project that looks like this:
FF FE 5B 00 6F 00 6C 00|65 00 64 00 62 00 5D 00 |˙ţ[ o l e d b ]
0D 00 0A 00 3B 00 20 00|45 00 76 00 65 00 72 00 |. . ; E v e r
...
2
votes
1answer
109 views
Save BOM with File
Can someone please tell me how to save the byte order marker (BOM) with a file? For example, I save a text file now like:
NSString *currentFileContent = @"This is a string of text to represent file ...
2
votes
0answers
212 views
How to deal with BOM in InputStream [closed]
Possible Duplicate:
Byte order mark screws up file reading in Java
public Collection<String> getLines(String path) throws SftpException
{
BufferedReader reader = null;
try
{
...
2
votes
2answers
549 views
why org.apache.xerces.parsers.SAXParser does not skip BOM in utf8 encoded xml?
I have an xml with utf8 encoding.
And this file contains BOM a beginning of the file.
So during parsing I am facing with org.xml.sax.SAXParseException: Content is not allowed in prolog.
I can not ...
2
votes
1answer
383 views
How can I detect if a .NET StreamReader found a UTF8 BOM on the underlying stream?
I get a FileStream(filename,FileMode.Open,FileAccess.Read,FileShare.ReadWrite) and then a StreamReader(stream,true).
Is there a way I can check if the stream started with a UTF8 BOM?
I am noticing ...
2
votes
3answers
572 views
Entity Framework Self-Referencial Many-To-Many with Payload ( Bill of Materials BOM )
I asked this question a while back without an answer, I believe it may be the most bizarre implementation for the EF, although it is quite practical. Here is my previous post:
...
2
votes
1answer
122 views
Browser object references for Chrome, Safari or Opera?
I was able to find the browser object references for Firefox and IE...
Firefox: https://developer.mozilla.org/en/Gecko_DOM_Reference
IE: http://msdn.microsoft.com/en-us/library/ms533054(VS.85).aspx
...
2
votes
1answer
225 views
PHP File unreadable after being downloaded
Hi I have a script that creates a file and stores it on the server. The file is encoded in UTF-8 and is a kind of xml file for the cmap software.
If i open the file directly from the server then ...
2
votes
1answer
523 views
java: can I convert strings to byte arrays, without a BOM?
Suppose I have this code:
String encoding = "UTF-16";
String text = "[Hello StackOverflow]";
byte[] message= text.getBytes(encoding);
If I display the byte array in message, the result is:
0000 ...
2
votes
2answers
378 views
Unicode BOM for UTF-16LE vs UTF32-LE
It seems like there's an ambiguity between the Byte Order Marks used for UTF16-LE and UTF-32LE. In particular, consider a file that contains the following 8 bytes:
FF FE 00 00 00 00 00 00
How can ...
2
votes
3answers
929 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 document start with a BOM ...
2
votes
4answers
3k views
Does Java have methods to get the various byte order marks?
I am looking for a utility method or constant in Java that will return me the bytes that correspond to the appropriate byte order mark for an encoding, but I can't seem to find one. Is there one? I ...
2
votes
3answers
1k views
BOM not expected in CF but sent by IIS/SharePoint
I'm trying to consume a SharePoint webservice from ColdFusion via cfinvoke ('cause I don't want to deal with (read: parse) the SOAP response itself).
The SOAP response includes a byte-order-mark ...