Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using the JExcel library to read excel spreadsheets. Each cell on the spreadsheet may contain localization strings in any of something like 44 languages (English, Portugese, French, Chinese, etc). Today I don't tell the API anything regarding the encoding its supposed to use. Its handling the Chinese OK, but it always screws up Portugese and German. Somehow the default encoding (MacRoman on my dev box, UTF-8 on production) is failing to properly interpret the strings it pulls out of the excel workbook. There has to be something wrong with how JExcel is interpreting the character encoding of the file.

That being said...

Are all the strings in an excel workbook encoded with the same character set?

Is there workbook meta-data I can ask what this character set is (I haven't found it yet)?

If I run all the cells through something like jchardet (http://jchardet.sourceforge.net/), is it likely to be able to divine the character encoding for the whole workbook (this is pretty much predicated on the first question being "yes, all stings in a given workbook are encoded with the same character set")?

So many questions, so little time.

share|improve this question
Are you reading .xls files, or .xlsx files? – Matt Ball Sep 16 '11 at 19:09
They are .xls files. Does the answer change for .xlsx? – Bob Kuhar Sep 16 '11 at 19:18
.xlsx files are really just XML files, which (I would think) means that there's only a single encoding for the whole file. .xls, on the other hand is (again, I think) a binary format, so I'm not sure if each cell could have its own character encoding... – Matt Ball Sep 16 '11 at 19:20
I think you are right, Matt. XLS is a binary format. I've also just had a "oh crap" moment in my logic above; the JExcel API requires me to set workbook encoding before I parse. I was thinking I could parse to figure out encoding. Rock. Hard Place. – Bob Kuhar Sep 16 '11 at 19:22
1  
Found the XLS encoding spec, thanks to Wikipedia: sc.openoffice.org/excelfileformat.pdf – Matt Ball Sep 16 '11 at 19:24
show 1 more comment

1 Answer

up vote 4 down vote accepted

Well I didn't get an answer directly, but Matt's discovery of a spec points the way towards an actual answer: http://sc.openoffice.org/excelfileformat.pdf

In the mean time, my problem went away by just setting the encoding to always be "Cp1252". I'm not sure exactly why, but I'm not looking a gift horse in the mouth, so to speak, and am moving on.

    WorkbookSettings workbookSettings = new WorkbookSettings();
    workbookSettings.setEncoding( "Cp1252" );
    Workbook.getWorkbook( theFile, workbookSettings );

I'll call this one answered.

share|improve this answer
stackoverflow.com/questions/508558/… could also have additional information here. – VonC Aug 31 '12 at 15:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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