Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using this spreadsheet gem to export excel files.

The Chinese word can cause Format Error. I tested on some other Chinese words and there is no problem.

require "spreadsheet"

Spreadsheet.client_encoding = 'UTF-8'
doc = Spreadsheet::Workbook.new
sheet = doc.create_worksheet
row = sheet.row(0)
row.push "进"
doc.write "test.xls"

Please help to check.

share|improve this question
Running your code gives me the following error. ./test.rb:7: invalid multibyte char (US-ASCII) – Althaf Hamez Jan 16 at 7:10
Oh, please add #encoding:utf-8 at the head of file – goofansu Jan 16 at 7:20
I run this code and everything is OK. Excel opened file with no problem. – Yevgeniy Anfilofyev Jan 16 at 7:28
@YevgeniyAnfilofyev That's so strange. I'm using ruby 1.9.3-p327 – goofansu Jan 16 at 8:21
ruby 1.9.3p286 (2012-10-12) [i386-mingw32] and Excel 2003 – Yevgeniy Anfilofyev Jan 16 at 8:26
show 2 more comments

closed as too localized by goofansu, Andy H, CoolBeans, C. Ross, ewall Jan 17 at 15:58

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

In your source code try adding:

# encoding: UTF-8

as the second line in the file.

share|improve this answer
Hi, That line is in the head of my file. I forgot to paste it. – goofansu Jan 16 at 8:22

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