I have a Java app which reads CSV files which have been created in Excel (e.g. 2007). Does anyone know what charset MS Excel uses to save these files in?

I would have guessed either:

  • windows-1255 (Cp1255)
  • ISO-8859-1
  • UTF8

but I am unable to decode extended chars (e.g. french accentuated letters) using either of these charset types.

link|improve this question

feedback

6 Answers

up vote 9 down vote accepted

CVS files could be in any format, depending on what encoding option was specified during the export from Excel: (Save Dialog, Tools Button, Web Options Item, Encoding Tab)

link|improve this answer
and the default encoding is "ANSI", usually one of cp1250 to cp1258. – John Machin May 18 '10 at 20:43
My default encoding is UTF-8, but that's probably because I've selected it in the past and Excel is just remembering my selection from the last time I saved a CSV file. This selection seems to persist even after closing and re-launching Excel. – Triynko Oct 7 '11 at 20:50
2  
The "Web Options" does not apply to CSV exports (at least with Excel 2007). The encoding of the CSV file seems to follow default encoding of the installation. So it can be anything, in practice. Sadly, there does not seem to be a way to control this at export-time. – gawi Nov 15 '11 at 17:55
Confirmed that the Web Options setting doesn't apply to CSV exports in Excel 2010 as well. Please downvote this answer, it is incorrect. – Russell Davis Feb 3 at 21:33
Instead of down-voting the answer, which is technically correct, why don't we all file a bug report @Microsoft about this broken feature. The "encoding option [that] was specified during the export from Excel" is the one in your computer's Region and Language settings, rather than the encoding tab in the web options. The encoding tab option says "save this document as:", so it should apply to the document being saved, for any text-based format to which text-encoding applies. The workaround is to change your Region and Language settings, but it requires a restart, and still uses code-pages. – Triynko Feb 7 at 18:17
show 1 more comment
feedback

From memory, Excel uses the machine-specific ANSI encoding. So this would be Windows-1252 for a EN-US installation, 1251 for Russian, etc.

link|improve this answer
True but Excel 2007 allows the user (if they can find the Tools button!) to choose from a long list; "ANSI" is the default. – John Machin May 18 '10 at 20:44
That's how it should work, but the feature is broken. Instead of honoring the "save this document as:" option you select in the save-as dialog/tools menu/web option item/encoding tab, Excel just uses the code-page set in your Region and Language settings. – Triynko Feb 7 at 18:20
feedback

I had a similar problem last week. I received a number of CSV files with varying encodings. Before importing into the database I then used the chardet libary to automatically sniff out the correct encoding.

Chardet is a port from Mozillas character detection engine and if the sample size is large enough (one accentuated character will not do) works really well.

link|improve this answer
feedback

Russian Edition offers CSV, CSV (Macintosh) and CSV (DOS).

When saving in plain CSV, it uses windows-1251.

I just tried to save French word Résumé along with the Russian text, it saved it in HEX like 52 3F 73 75 6D 3F, 3F being the ASCII code for question mark.

When I opened the CSV file, the word, of course, became unreadable (R?sum?)

link|improve this answer
feedback

cp1250 is used extensively in Microsoft Office documents, including Word and Excel 2003.

http://en.wikipedia.org/wiki/Windows-1250

A simple way to confirm this would be to:

  1. Create a spreadsheet with higher order characters, e.g. "Veszprém" in one of the cells;
  2. Use your favourite scripting language to parse and decode the spreadsheet;
  3. Look at what your script produces when you print out the decoded data.

Example perl script:

#!perl

use strict;

use Spreadsheet::ParseExcel::Simple;
use Encode qw( decode );

my $file    = "my_spreadsheet.xls";

my $xls     = Spreadsheet::ParseExcel::Simple->read( $file );
my $sheet   = [ $xls->sheets ]->[0];

while ($sheet->has_data) {

    my @data = $sheet->next_row;

    for my $datum ( @data ) {
        print decode( 'cp1250', $datum );
    }

}
link|improve this answer
1  
"cp1250 is used extensively in Microsoft Office documents" ... in YOUR neck of the woods. cp125n is used extensively world-wide, for 0 <= n <= 8. – John Machin May 18 '10 at 20:40
feedback

OOXML files like those that come from Excel 2007 are encoded in UTF-8, according to wikipedia. I don't know about CSV files, but it stands to reason it would use the same format...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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