Excel 标准编码

发布于 2024-12-10 11:28:30 字数 261 浏览 0 评论 0原文

我从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

jJeQQOZ5 2024-12-17 11:28:30

使用 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").

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文