Excel 标准编码
我从 SQL 服务器获取数据。
我创建一个长字符串,字段之间有空格,新行换行符之间有空格。
然后我使用 iconv 将字符串从 windows-1255 转换为 UTF-8 并将该字符串保存到文件 test.xls。
当我在 OpenOffice 电子表格中打开文件时,如果我选择 UTF 编码,表格将正确显示。
但是在 MS Excel 中打开文件,字段显示正确,但希伯来语文本显示不正确。
我的问题是:我应该使用哪种编码保存文件才能在Excel中正确显示?
I take data from SQL server.
I create a long string with spaces between fields and newlines for new rows.
Then I convert the string with iconv from windows-1255 to UTF-8 and save the string to a file test.xls.
When I open the file in OpenOffice spreadsheet the table is displayed correctly if I choose the UTF encoding.
But opening the file in MS excel, the fields are displayed correctly, but Hebrew text is not.
My question is: In which encoding should I save the file to be displayed correctly in Excel?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 PHPExcel 创建实际的 Excel 文档,而不是错误标记的 CSV。问题是 CSV 没有编码元数据,Excel 将使用哪种编码取决于系统设置(即没有“标准编码”)。
Use PHPExcel to create actual Excel documents rather than mislabelled CSV. The problem is that CSV has no encoding metadata, and which encoding Excel will use depends on the system settings (i.e. there is no "standard encoding").